mirror of
https://github.com/Leahnaya/Sonataria-Server.git
synced 2026-08-28 05:04:00 -05:00
10 lines
160 B
JavaScript
10 lines
160 B
JavaScript
import 'dotenv/config'
|
|
|
|
const config = {
|
|
hostName: 'localhost',
|
|
port: parseInt(process.env.port) || 3000,
|
|
maintenenceMode: false
|
|
}
|
|
|
|
export default config
|