-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.template.js
33 lines (22 loc) · 975 Bytes
/
config.template.js
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
32
33
//
// Lansite Config
// By Tanner Krewson
//
var Config = {};
//Web Address: Specify the URL that the server will append to redirects
Config.url = 'http://localhost';
//Port: Specify the port in which the server will run off
Config.port = 3000;
//Offline Mode: For LANs that have no Internet
Config.offlineMode = false;
//Steam API Key: Grab one for yourself here: http://steamcommunity.com/dev/apikey
Config.steamAPIKey = 'YOUR API KEY HERE';
//Auto OP First User: Make the first user that logs into Lansite an admin
Config.autoOPFirstUser = true;
//Developer Mode: Enables features that are insecure to run in a production situation
Config.developerMode = false;
//Private Messaging: enable or disable private messaging between users
Config.privateMessaging = true;
//Connect 4 URL: If you would prefer to host it yourself, https://github.com/tannerkrewson/connect4lansite
Config.connectFourUrl = 'https://kevinshannon.dev/connect4/';
module.exports = Config;