mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-11 18:44:19 -07:00
ETL Classes for Data Sets (#260)
* first commit * checkpoint * checkpoint * first extract module 🎉 * completed census acs etl class * completed ejscreen etl * completed etl * score generation ready * improving census load and separation * score generation working 🎉 * completed etls * new score generation * PR reviews * run specific etl; starting docstrings * docstrings work * more docstrings * completed docstrings * adding pyenv version * more reasonable poetry req for python * PR comments
This commit is contained in:
parent
69ef32485c
commit
842312f69f
33 changed files with 2628 additions and 2872 deletions
|
@ -1,4 +1,5 @@
|
|||
from dynaconf import Dynaconf
|
||||
from pathlib import Path
|
||||
|
||||
settings = Dynaconf(
|
||||
envvar_prefix="DYNACONF",
|
||||
|
@ -6,6 +7,9 @@ settings = Dynaconf(
|
|||
environments=True,
|
||||
)
|
||||
|
||||
# set root dir
|
||||
settings.APP_ROOT = Path.cwd()
|
||||
|
||||
# To set an environment use:
|
||||
# Linux/OSX: export ENV_FOR_DYNACONF=staging
|
||||
# Windows: set ENV_FOR_DYNACONF=staging
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue