Attempt to clarify installation instructions a little
[vchess.git] / client / src / parameters.js.dist
1 const Parameters =
2 {
3 // URL of your socket server
4 socketUrl: "ws://localhost:3000",
5
6 // URL of the server (leave blank for 1-server case)
7 serverUrl: "http://localhost:3000",
8
9 // "include" if the server is at a different address
10 credentials: "same-origin",
11
12 // IDs of users allowed to post news and edit any problem
13 devs: []
14 };
15
16 export default Parameters;