-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env
27 lines (23 loc) · 839 Bytes
/
.env
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
# override items in .env.local(.env.{env}.local) if you need
# database config
# "db" for docker inside database, "host.docker.internal" for host database(only work for mac and windows for docker 18.03+)
DB_HOST="localhost"
DB_PORT=5432
DB_USERNAME="postgres"
DB_PASSWORD="postgres"
DB_NAME_DEV="cita_dapps_dev"
DB_NAME_TEST="cita_dapps_test"
DB_NAME_PRO="cita_dapps"
# secret
# WARNING: run `rails secret` to generate one and rewrite in .env.local
SECRET_KEY_BASE="c405493e0066d356ad0b06d7f6c2fde9bbcf69b4c869de7de7db9261d3830db92db108c3c67be055af3931d086b810c62ccea73bff303c9709d25e282652544d"
# config your qiniu
# set "QINIU_CLOUD" to "true" to enable qiniu in development
#QINIU_ACCESS_KEY=""
#QINIU_SECRET_KEY=""
#QINIU_BUCKET=""
#QINIU_DOMAIN=""
#QINIU_PROTOCOL=""
#QINIU_BUCKET_PRIVATE=""
#ADMIN_USERNAME=""
#ADMIN_PASSWORD=""