@@ -11,6 +11,8 @@ The database is currently set up with SQLite and is stored in a Github repositor
This script should never be run again unless you are restarting the database from scratch. There is no guarantee the script will still be up-to-date or that it will account for any new edge cases that have developed over time.
All the initial database scripts are in the initial_data_scripts folder. If any new sources are added to the database, the daily script should be added there in the appropriate file and a call to it should be added to run_main_initially.py for consistency regardless of if run_main_initially.py is actually called to add this new data to the database.
### Daily Database Update
Run the following command daily: `python run_daily.py`.
...
...
@@ -25,6 +27,8 @@ Essentially, you will need to do the following on a daily basis:
3. Commit the changes: `git commit -m "Update db <date>"`.
4. Push to this repo: `git push`.
All the daily database scripts are in the daily_data_scripts folder. If any new sources are added to the database, the daily script should be added there in the appropriate file and a call to it should be added to run_daily.py.