Write patch to pull in weekly player data to database; start player/team stat models

This commit is contained in:
2020-11-07 12:10:19 -06:00
parent 9d3d614c20
commit 5cc3d31415
8 changed files with 166 additions and 6 deletions

View File

@@ -22,6 +22,7 @@ const server_config = {
sports_data: {
api_key: env('SPORTSDATA_API_KEY'),
season: env('SPORTSDATA_SEASON', '2020REG'),
},
logging: {

15
config/settings.config.js Normal file
View File

@@ -0,0 +1,15 @@
const settings_config = {
default_settings: [
{
key: 'in_draft_stage',
value: true,
},
{
key: 'current_week',
value: 1,
},
],
}
module.exports = exports = settings_config