-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
37 lines (29 loc) · 1.38 KB
/
.env.example
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
NODE_ENV = development
PORT = 4004
login_disabled = false
# Database settings, this is used to connect to the database
db_database = ""
db_user = ""
db_password = ""
db_host = ""
db_port = ""
db_storage = "./database.sqlite"
db_dialect = "sqlite"
# Whitelabel settings, this is used to customise the system to your brand
# You can change the system_name and system_domain to your brand name and domain
# make sure to only provide the domain and not protocol in the system_domain
system_name = "Rooted Treasures"
system_domain = "rooted-treasures.co.uk"
system_colour = "#29e810"
# Cache settings, this is used to cache data in the system to improve performance
cache = false
cache_dir = ".cache"
max_cache_size = 1000 # Its recommended to keep this value above 500 and below 2000
cache_iv = "" # Make sure to change this key before deploying to production environment
cache_key = "" # Make sure to change this key before deploying to production environment
# Encryption keys, this is used to encrypt and decrypt data in the database
# to generate a new key, run the following command in the terminal "npm run generate-key"
# or "node generatekeys.js"
iv = "" # Make sure to change this key before deploying to production environment
key = "" # Make sure to change this key before deploying to production environment
session_secret = "" # Make sure to change this key before deploying to production environment