-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ indicator-upgrader: store variable mapping (#3389)
* Start a new staging server for branch 'variable-mapping' * add to_sql * define sqlite db name in variable * new methods to store variable mapping * force int if possible * fix inifinte loop * save variable mapping * minor ui tweak * add undo capabilities * store var mapping
- Loading branch information
1 parent
9a4447b
commit d09cdbb
Showing
8 changed files
with
253 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
from etl.paths import BASE_DIR | ||
|
||
WIZARD_CFG_NAME = ".wizardcfg" | ||
WIZARD_DB_NAME = "wizard.db" | ||
|
||
# PATH TO WIZARD CONFIG FOLDER | ||
WIZARD_CFG = BASE_DIR / ".wizardcfg" | ||
WIZARD_CFG = BASE_DIR / WIZARD_CFG_NAME | ||
|
||
# PATH WIZARD DEFAULTS (old) | ||
WIZARD_VARIABLES_DEFAULTS_OLD = BASE_DIR / ".wizard" | ||
|
||
# PATH WIZARD DEFAULTS (new) | ||
WIZARD_VARIABLES_DEFAULTS = WIZARD_CFG / "defaults.json" | ||
WIZARD_DB = WIZARD_CFG / "wizard.db" | ||
WIZARD_DB = WIZARD_CFG / WIZARD_DB_NAME | ||
|
||
# STREAMLIT SECRETS | ||
STREAMLIT_SECRETS = BASE_DIR / ".streamlit" / "secrets.toml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters