Initial backend service

This commit is contained in:
Ruslan Bakiev
2026-05-05 12:01:29 +07:00
commit 2357897530
44 changed files with 14773 additions and 0 deletions

8
src/config.ts Normal file
View File

@@ -0,0 +1,8 @@
import 'dotenv/config';
export const config = {
host: process.env.HOST ?? '0.0.0.0',
port: Number(process.env.PORT ?? '4000'),
databaseUrl: process.env.DATABASE_URL ?? '',
hatchetToken: process.env.HATCHET_CLIENT_TOKEN ?? '',
};