forked from ifvictr/faceclash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
31 lines (31 loc) · 1.14 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/*
* Faceclash configuration file
*
* It must be present and configured correctly at all times during gameplay, or the game won't function properly.
*
* Configuration fields:
* - DATABASE_USER: What's your database username?
* - DATABASE_PASSWORD: What's your user password? You can leave this blank if there isn't one set.
* - DATABASE_NAME: What's your database's name?
* - DATABASE_HOST: Where your database is located?
* - DATABASE_PORT: On what port is your database? Default port is set to '3306'.
*
* - ADMIN_USER: What do you want your dashboard admin username to be? Default username is 'admin'.
* - ADMIN_PASSWORD: How about the password? Default password is 'password'.
*
* - APP_DEBUG: Would you like to see debug/error messages? If set to 'true', debug mode will be enabled. Default value is 'false'.
*/
class Config{
// Database config
const DATABASE_USER = "";
const DATABASE_PASSWORD = "";
const DATABASE_NAME = "";
const DATABASE_HOST = "";
const DATABASE_PORT = 3306;
// Admin config
const ADMIN_USER = "admin";
const ADMIN_PASSWORD = "password";
// App config
const APP_DEBUG = false;
}