Add FastAPI admin/public API service, database setup, Docker deployment files, docs, and tests.
6 lines
189 B
Plaintext
6 lines
189 B
Plaintext
DATABASE_URL="postgresql://miniapp:miniapp_dev_password@localhost:5433/miniapp"
|
|
JWT_SECRET="replace-with-a-long-random-secret-before-production"
|
|
PORT=4000
|
|
LOG_LEVEL="info"
|
|
CORS_ORIGINS="*"
|