-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
77 lines (48 loc) · 1.13 KB
/
.env.example
File metadata and controls
77 lines (48 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
NODE_ENV = "development" # "development" || "staging" || "production"
APP_NAME = "App Name"
#--- --- --- --- --- --- ---#
# --- Database
DB_ENABLE=false
DB_USERNAME = "root"
DB_PASSWORD = ""
DB_DATABASE = ""
DB_DIALECT = "mysql"
DB_HOST = "127.0.0.1"
DB_PORT = 3306
DB_LOGGING = false
#--- --- --- --- --- --- ---#
# --- --- Server
# --- Thread
SERVER_THREADS = 1
# --- Server Listen
IP = '0.0.0.0'
PORT = 3000
SERVER_HOST = http://localhost
#--- --- --- --- --- --- ---#
# --- --- API Configuration
# Middlewares
MIDDLEWARE_ORIGIN = '*'
MIDDLEWARE_JSON_LIMIT_SIZE = '5mb'
# Logger
LOG_REQUEST = 'full' # full, medium, false
WEB_HOST = https://lorem.ipsum
# Services
#--- --- --- --- --- --- ---#
# --- --- --- JWT
# --- --- Config
JWT_TOKEN_SECRET = 'loremJWTSecret'
#--- --- --- --- --- --- ---#
# --- Hash Salt
HASH_SALT_PASSWORD = 'lorem'
HASH_SALT_FILE ='loremHashSaltFile'
#--- --- --- --- --- --- ---#
# --- NODEMAILER
MAIL_EMAIL = ''
MAIL_ETHEREAL_PASSWORD = ''
#--- --- --- --- --- --- ---#
# --- GeiminiAI Config
GEMINI_API_KEY = ''
GEMINI_MODEL = ''
GEMINI_TEMPERATURE = 0.7
GEMINI_TOP_P = 0.8
GEMINI_TOP_K = 40