Initial commit

This commit is contained in:
2023-03-23 00:47:07 +01:00
commit 329b222e67
10 changed files with 1216 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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)