We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f6a967 commit 5a09a03Copy full SHA for 5a09a03
1 file changed
src/db.py
@@ -80,7 +80,8 @@ def df_add_urls(file_paths:list):
80
def df_to_db(file_paths:list):
81
'''Create prod database, combining df_add_urls(); output for frontend display'''
82
df = df_add_urls(file_paths)
83
- rev_json = Path('src/docs/_static/sample_db_prd.json')
+ # filepath below must match steps in assoc CI Job, 'with: path: app/dev'
84
+ rev_json = Path('app/dev/src/docs/_static/sample_db_prd.json')
85
db = df.to_json(rev_json, orient='records')
86
return db
87
0 commit comments