mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* reorg
* added configuration management; initial click cmds
* reset dirs completed
* major modularization effort
* prepping mbtiles
* first round of PR review updates
* round 2 of feedback review
* checkpoint
* habemus dockerfile 🎉
* updated dock-er-compose with long running container
* census generation works
* logging working
* updated README
* updated README
* last small update to README
* added instructions for log visualization
* census etl update for reusable fips module
* ejscreem etl updated
* further modularization
* score modularization
* tmp cleanup
11 lines
277 B
Python
11 lines
277 B
Python
from dynaconf import Dynaconf
|
|
|
|
settings = Dynaconf(
|
|
envvar_prefix="DYNACONF",
|
|
settings_files=["settings.toml", ".secrets.toml"],
|
|
environments=True,
|
|
)
|
|
|
|
# To set an environment use:
|
|
# Linux/OSX: export ENV_FOR_DYNACONF=staging
|
|
# Windows: set ENV_FOR_DYNACONF=staging
|