7 lines
274 B
Text
7 lines
274 B
Text
FLASK_ENV=dev
|
|
SECRET_KEY=your-secret-key-here
|
|
JWT_SECRET_KEY=your-jwt-secret-key-here
|
|
CORS_ORIGINS=*
|
|
DEV_DATABASE_URL=postgresql://crafting:devpassword@localhost:5432/crafting_shop
|
|
DATABASE_URL=postgresql://user:password@localhost/proddb
|
|
TEST_DATABASE_URL=sqlite:///test.db
|