Skip to content

Commit

Permalink
fix(Backups): fix backup location. closes #407
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Oct 9, 2024
1 parent e83158b commit 97ed9b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open_prices/common/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def dump_db_task():
"""
Dump the database as JSONL files to the data directory
"""
output_dir = Path(os.path.join(settings.BASE_DIR, "static", "data"))
output_dir = Path(os.path.join(settings.BASE_DIR, "data"))
output_dir.mkdir(parents=True, exist_ok=True)

for table_name, model_class, schema_class in (
Expand Down

0 comments on commit 97ed9b2

Please sign in to comment.