b7abc139193431d806d0b1f1f7b894c3bb4be6de
[vchess.git] / server / config / parameters.js.dist
1 module.exports = {
2
3 // For mail sending. NOTE: *no trailing slash*
4 siteURL: "http://localhost:8080",
5
6 // To know in which environment the code run
7 env: process.env.NODE_ENV || 'development',
8
9 // CORS: cross-origin resource sharing options
10 cors: {
11 enable: true,
12 allowedOrigin: "http://localhost:8080",
13 },
14
15 // Lifespan of a (login) cookie
16 cookieExpire: 183*24*60*60*1000, //6 months in milliseconds
17
18 // Characters in a login token, and period of validity (in milliseconds)
19 token: {
20 length: 16,
21 expire: 30*60*1000, //30 minutes in milliseconds
22 },
23
24 // Path to tournament repository (to synchronize DBs)
25 tourneyPath: "/path/to/folder",
26
27 // Email settings
28 mail: {
29 host: "mail_host_address",
30 port: 465, //if secure; otherwise use 587
31 secure: true, //...or false
32 user: "mail_user_name",
33 pass: "mail_password",
34 noreply: "some_noreply_email",
35 contact: "some_contact_email",
36 },
37
38 // IDs of users allowed to post news and edit any problem
39 devs: []
40
41 };