mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00

* integrate websocket redis adapter * use APP_SECRET for jwt signing * auto migrate database on startup in production * add updatedAt to update db operations * create enterprise ee package directory * fix comment editor focus * other fixes
33 lines
595 B
Plaintext
33 lines
595 B
Plaintext
APP_URL=http://localhost:3000
|
|
APP_SECRET=REPLACE_WITH_LONG_SECRET
|
|
PORT=3000
|
|
|
|
JWT_TOKEN_EXPIRES_IN=30d
|
|
|
|
DATABASE_URL="postgresql://postgres:password@localhost:5432/docmost?schema=public"
|
|
REDIS_URL=redis://127.0.0.1:6379
|
|
|
|
# local | s3
|
|
STORAGE_DRIVER=local
|
|
|
|
# S3 Config
|
|
AWS_S3_ACCESS_KEY_ID=
|
|
AWS_S3_SECRET_ACCESS_KEY=
|
|
AWS_S3_REGION=
|
|
AWS_S3_BUCKET=
|
|
AWS_S3_ENDPOINT=
|
|
AWS_S3_URL=
|
|
|
|
# EMAIL drivers: smtp / postmark / log
|
|
MAIL_DRIVER=smtp
|
|
MAIL_HOST=127.0.0.1
|
|
MAIL_PORT=2525
|
|
MAIL_USERNAME=
|
|
MAIL_PASSWORD=
|
|
MAIL_FROM_ADDRESS=hello@example.com
|
|
MAIL_FROM_NAME=Docmost
|
|
|
|
# for postmark driver
|
|
POSTMARK_TOKEN=
|
|
|