mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:36:05 +00:00
df4abfdfb7
Some checks are pending
Build Docker Image / build-and-push (push) Waiting to run
Build Pro Image / build-and-push (push) Waiting to run
deploy client docs / Build (push) Waiting to run
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase Backend Test / sqlite-test (20, false) (push) Waiting to run
NocoBase Backend Test / sqlite-test (20, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, nocobase, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, nocobase, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, public, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, public, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, nocobase, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, nocobase, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, public, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, public, true) (push) Waiting to run
NocoBase Backend Test / mysql-test (20, false) (push) Waiting to run
NocoBase Backend Test / mysql-test (20, true) (push) Waiting to run
NocoBase Backend Test / mariadb-test (20, false) (push) Waiting to run
NocoBase Backend Test / mariadb-test (20, true) (push) Waiting to run
NocoBase FrontEnd Test / frontend-test (18) (push) Waiting to run
Test on Windows / build (push) Waiting to run
67 lines
1.7 KiB
Plaintext
67 lines
1.7 KiB
Plaintext
################# DOCKER #################
|
|
|
|
ADMINER_PORT=10101
|
|
DB_MYSQL_PORT=10102
|
|
DB_POSTGRES_PORT=10103
|
|
VERDACCIO_PORT=10104
|
|
# VERDACCIO_URL=http://host.docker.internal:10104/
|
|
|
|
################# NOCOBASE APPLICATION #################
|
|
|
|
# !!! When `APP_ENV=production`, opening http://localhost:13000/ will show "Not Found".
|
|
# !!! It is recommended to use nginx to proxy static files. For example https://github.com/nocobase/nocobase/blob/main/docker/nocobase/nocobase.conf
|
|
APP_ENV=development
|
|
APP_PORT=13000
|
|
APP_KEY=test-key
|
|
|
|
API_BASE_PATH=/api/
|
|
API_BASE_URL=
|
|
|
|
# console | file | dailyRotateFile
|
|
LOGGER_TRANSPORT=
|
|
LOGGER_BASE_PATH=storage/logs
|
|
# error | warn | info | debug | trace
|
|
LOGGER_LEVEL=
|
|
# If LOGGER_TRANSPORT is dailyRotateFile and using days, add 'd' as the suffix.
|
|
LOGGER_MAX_FILES=
|
|
# add 'k', 'm', 'g' as the suffix.
|
|
LOGGER_MAX_SIZE=
|
|
# console | json | logfmt | delimiter
|
|
LOGGER_FORMAT=
|
|
|
|
################# DATABASE #################
|
|
|
|
# postgres | msysql | mariadb | sqlite
|
|
DB_DIALECT=postgres
|
|
DB_TABLE_PREFIX=
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_DATABASE=nocobase
|
|
DB_USER=nocobase
|
|
DB_PASSWORD=nocobase
|
|
# DB_LOGGING=on
|
|
# DB_UNDERSCORED=false
|
|
|
|
# sqlite only
|
|
# DB_STORAGE=storage/db/nocobase.sqlite
|
|
|
|
#== SSL CONFIG ==#
|
|
# DB_DIALECT_OPTIONS_SSL_CA=
|
|
# DB_DIALECT_OPTIONS_SSL_KEY=
|
|
# DB_DIALECT_OPTIONS_SSL_CERT=
|
|
# DB_DIALECT_OPTIONS_SSL_REJECT_UNAUTHORIZED=true
|
|
|
|
################# CACHE #################
|
|
CACHE_DEFAULT_STORE=memory
|
|
# max number of items in memory cache
|
|
CACHE_MEMORY_MAX=2000
|
|
# CACHE_REDIS_URL=
|
|
|
|
################# STORAGE (Initialization only) #################
|
|
|
|
INIT_LANG=en-US
|
|
INIT_ROOT_EMAIL=admin@nocobase.com
|
|
INIT_ROOT_PASSWORD=admin123
|
|
INIT_ROOT_NICKNAME=Super Admin
|
|
INIT_ROOT_USERNAME=nocobase
|