mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
30 lines
414 B
Plaintext
30 lines
414 B
Plaintext
###########
|
|
# General #
|
|
###########
|
|
EXPOSED_PORT=3000
|
|
|
|
#########
|
|
# FILES #
|
|
#########
|
|
EXPOSED_FILES_SERVER_PORT=3042
|
|
PUBLIC_FILES_SERVER_URL=http://localhost:3042
|
|
|
|
######
|
|
# DB #
|
|
######
|
|
|
|
DB_HOST=db
|
|
DB_PORT=3306
|
|
DB_USERNAME=std_notes_user
|
|
DB_PASSWORD=changeme123
|
|
DB_DATABASE=standard_notes_db
|
|
DB_DEBUG_LEVEL=all
|
|
DB_MIGRATIONS_PATH=dist/migrations/*.js
|
|
|
|
#########
|
|
# CACHE #
|
|
#########
|
|
|
|
REDIS_PORT=6379
|
|
REDIS_HOST=cache
|