Sudo-JHare 897e875e29 V0.5 - incremental
App should be mostly functional now
2025-04-24 09:27:48 +10:00

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