mirror of
https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy.git
synced 2025-06-15 20:50:00 +00:00
18 lines
756 B
Bash
18 lines
756 B
Bash
# .env file for FHIRVINE environment variables
|
|
|
|
# Set the environment for Flask (development or production)
|
|
# Use 'production' for deployment, 'development' for local testing
|
|
FLASK_ENV=development
|
|
|
|
# Generate a strong, random secret key for Flask sessions and security
|
|
# You can generate one using: python -c 'import secrets; print(secrets.token_hex(24))'
|
|
SECRET_KEY=replace_this_with_a_strong_random_secret_key
|
|
|
|
# Optional: Override the default database URL if needed.
|
|
# The default in app.py points to /app/instance/fhirvine.db within the container.
|
|
# DATABASE_URL=sqlite:////app/instance/fhirvine.db
|
|
|
|
# Optional: Add other environment-specific configurations here
|
|
# e.g., API_KEYS, external service URLs etc.
|
|
|
|
FHIR_SERVER_URL=http://hapi.fhir.org/baseR4 |