chore: add initial project scaffolding with Docker, nginx, and core app modules
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
POSTGRES_USER=rbox_user
|
||||
POSTGRES_PASSWORD=rbox_password
|
||||
POSTGRES_DB=rbox_db
|
||||
|
||||
DATABASE_URL=postgres://rbox_user:rbox_password@db:5432/rbox_db
|
||||
REDIS_URL=redis://redis:6379/0
|
||||
|
||||
SECRET_KEY=change-this-to-a-random-secret-key-in-production
|
||||
ALGORITHM=HS256
|
||||
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
||||
REFRESH_TOKEN_EXPIRE_DAYS=7
|
||||
|
||||
DOMAIN_NAME=localhost
|
||||
CERTBOT_EMAIL=admin@example.com
|
||||
|
||||
STORAGE_PATH=/app/data
|
||||
|
||||
S3_ACCESS_KEY_ID=
|
||||
S3_SECRET_ACCESS_KEY=
|
||||
S3_ENDPOINT_URL=
|
||||
S3_BUCKET_NAME=rbox-storage
|
||||
|
||||
SMTP_SERVER=
|
||||
SMTP_PORT=587
|
||||
SMTP_USERNAME=
|
||||
SMTP_PASSWORD=
|
||||
SMTP_FROM_EMAIL=no-reply@example.com
|
||||
|
||||
TOTP_ISSUER=RBox
|
||||
Reference in New Issue
Block a user