Add initial data tables (#2)

This commit is contained in:
2024-04-04 19:15:58 -04:00
parent f3fa410760
commit 9e027ca51e
4 changed files with 84 additions and 0 deletions

20
src/start.php Normal file
View 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';