Comment all the things!

This commit is contained in:
2020-11-08 12:34:50 -06:00
parent 72f3923866
commit 06515b0559
73 changed files with 269 additions and 162 deletions

View File

@@ -1,3 +1,6 @@
/*
* This file was automatically generated by the Flitter framework.
*/
const app_config = {
/*

View File

@@ -1,3 +1,6 @@
/*
* This file was automatically generated by the Flitter framework.
*/
const auth_config = {
default_provider: env('AUTH_DEFAULT_PROVIDER', 'flitter'),

View File

@@ -1,3 +1,6 @@
/*
* This file was automatically generated by the Flitter framework.
*/
const database_config = {
/*

View File

@@ -1,3 +1,6 @@
/*
* This file was automatically generated by the Flitter framework.
*/
const server_config = {
/*
@@ -20,8 +23,14 @@ const server_config = {
*/
frontend_path: env('FRONT_END_PATH', 'frontend'),
/*
* Configuration for interacting with the SportsData.io API.
*/
sports_data: {
// The API key which can access the NFL API.
api_key: env('SPORTSDATA_API_KEY'),
// The default season to make requests for.
season: env('SPORTSDATA_SEASON', '2020REG'),
},

View File

@@ -1,11 +1,16 @@
/*
* Configuration specifying the default values for database-driven
* game play settings.
*/
const settings_config = {
default_settings: [
{
// True if the game is in the draft stage.
key: 'in_draft_stage',
value: true,
},
{
// The current week in the fantasy season
key: 'current_week',
value: 1,
},