Add initial data tables (#2)
This commit is contained in:
20
src/start.php
Normal file
20
src/start.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
// USER CONFIGURATION ITEMS
|
||||
|
||||
/**
|
||||
* Which security model should the application use?
|
||||
* - 0 = single-user, no password
|
||||
* - 1 = single-user with password
|
||||
* - 2 = multi-user (all users require passwords)
|
||||
*
|
||||
* (NOTE THAT 1 AND 2 HAVE NOT YET BEEN IMPLEMENTED)
|
||||
*/
|
||||
const SECURITY_MODEL = 0;
|
||||
|
||||
/** The name of the database file where users and feeds should be kept */
|
||||
const DATABASE_NAME = 'frc.db';
|
||||
|
||||
// END USER CONFIGURATION ITEMS
|
||||
// (editing below this line is not advised)
|
||||
|
||||
include 'lib/Data.php';
|
||||
Reference in New Issue
Block a user