puzzle/server/config.example.js

15 lines
221 B
JavaScript
Raw Normal View History

2020-11-07 12:21:38 +01:00
export default {
http: {
2020-12-04 21:19:45 +01:00
hostname: '127.0.0.1',
2020-11-07 12:21:38 +01:00
port: 1337,
},
ws: {
2020-12-04 21:19:45 +01:00
hostname: '127.0.0.1',
2020-11-07 12:21:38 +01:00
port: 1338,
connectstring: `ws://localhost:1338/ws`,
},
2020-12-04 21:19:45 +01:00
persistence: {
interval: 30000,
},
2020-11-07 12:21:38 +01:00
}