mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 21:16:15 +00:00
d5d0e1036b
* docs: add docs * ignore dumi theme test * fix: error TS2717: Subsequent property declarations must have the same type. * update docs * deploy gh-pages * plugins docs * hash & cname * exportStatic * ssr * vercel * vercel * fix: deploy vercel * Delete vercel.json * docs * fix APP_DIST * on master branch
48 lines
830 B
Plaintext
48 lines
830 B
Plaintext
########## DOCKER COMPOSE ENV ##########
|
|
|
|
DB_MYSQL_PORT=3306
|
|
DB_POSTGRES_PORT=5432
|
|
API_PORT=23000
|
|
VERDACCIO_PORT=4873
|
|
|
|
########## NOCOBASE ENV ##########
|
|
|
|
# DATABASE
|
|
|
|
DB_DIALECT=postgres
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_DATABASE=nocobase
|
|
DB_USER=nocobase
|
|
DB_PASSWORD=nocobase
|
|
# set to 'on' to enable log
|
|
DB_LOG_SQL=
|
|
|
|
# API & APP
|
|
|
|
NOCOBASE_ENV=
|
|
API_PORT=23000
|
|
APP_USE_STATIC_SERVER=true
|
|
APP_DIST=node_modules/@nocobase/app/dist
|
|
|
|
# ADMIN USER (Initialization only)
|
|
|
|
ADMIN_EMAIL=admin@nocobase.com
|
|
ADMIN_PASSWORD=admin
|
|
|
|
# STORAGE (Initialization only)
|
|
|
|
# local or ali-oss
|
|
STORAGE_TYPE=local
|
|
|
|
# LOCAL STORAGE
|
|
LOCAL_STORAGE_USE_STATIC_SERVER=true
|
|
LOCAL_STORAGE_BASE_URL=http://localhost:23000
|
|
|
|
# ALI OSS STORAGE
|
|
ALI_OSS_STORAGE_BASE_URL=
|
|
ALI_OSS_REGION=oss-cn-beijing
|
|
ALI_OSS_ACCESS_KEY_ID=
|
|
ALI_OSS_ACCESS_KEY_SECRET=
|
|
ALI_OSS_BUCKET=
|