mirror of
https://github.com/spacebarchat/server.git
synced 2026-09-10 22:35:53 +00:00
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
import { config } from "dotenv";
|
|
config();
|
|
|
|
import { Server } from "./Server";
|
|
|
|
//testing
|
|
process.env.DATABASE = "../bundle/database.db";
|
|
|
|
const server = new Server();
|
|
server.listen(); |