mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
17 lines
512 B
JavaScript
17 lines
512 B
JavaScript
|
|
/**
|
||
|
|
* The base URL for the database.
|
||
|
|
*
|
||
|
|
* Used to persist data from the spreadsheet.
|
||
|
|
*/
|
||
|
|
// README: Keep in sync with `../index.mjs`.
|
||
|
|
const DB_BASE_URL = 'https://angular-io.firebaseio.com';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The regex to match the name of sheets that contain team allocation data, which needs to be stored
|
||
|
|
* in Firebase.
|
||
|
|
*
|
||
|
|
* All "Team Allocation" sheets must have names that match this pattern in order for them to be
|
||
|
|
* taken into account.
|
||
|
|
*/
|
||
|
|
const TEAM_ALLOCATION_SHEET_NAME_RE = /^(\d\d\d\d) team allocation$/i;
|