From 931d6873c1c33b1b48284d91aaae7a51fc0e3418 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Wed, 18 Jun 2025 00:22:33 +0000 Subject: [PATCH] Add environment variables sample file --- env.sample | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 env.sample diff --git a/env.sample b/env.sample new file mode 100644 index 0000000..3d8fb35 --- /dev/null +++ b/env.sample @@ -0,0 +1,21 @@ +# FastAPI Environment Variables +# 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