From 56d76451c8d3a1920700f98e7f86df0a84a0d603 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Wed, 18 Jun 2025 01:08:59 +0000 Subject: [PATCH] Add environment variables example file --- env.example | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 env.example diff --git a/env.example b/env.example new file mode 100644 index 0000000..60ea147 --- /dev/null +++ b/env.example @@ -0,0 +1,21 @@ +# FastAPI Environment Variables Example +# Copy this file to .env and update the values as needed + +# Application Configuration +APP_HOST=0.0.0.0 +APP_PORT=8000 +APP_DEBUG=false + +# Database Configuration +DATABASE_URL=sqlite:////app/storage/db/db.sqlite + +# Security Configuration +SECRET_KEY=your-secret-key-here-change-in-production +ALGORITHM=HS256 +ACCESS_TOKEN_EXPIRE_MINUTES=30 + +# CORS Configuration +CORS_ORIGINS=* + +# Application Environment +ENVIRONMENT=development \ No newline at end of file