initial commit
[browser-rts.git] / src / config.ts
1 import { config as dotenv } from 'dotenv';
2
3 dotenv();
4
5 export const TICK_LENGTH = process.env.TICK_LENGTH || 1000 * 60 * 5;
6 export const API_PORT = process.env.API_PORT || '9090';