This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2023-07-12 16:59:59 +02:00

13 lines
239 B
JavaScript

import * as dotenv from 'dotenv'
dotenv.config()
import { Server } from './src/Server.js'
const {
PPP2_PORT,
PPP2_SALT
} = process.env
const server = new Server({ salt: PPP2_SALT })
server.listen(process.env.PPP2_PORT || 8090)