first commit

This commit is contained in:
creations 2024-12-21 19:24:48 -05:00
commit a744ea6dcb
No known key found for this signature in database
GPG key ID: 35E9C06C9A9C8FEF
18 changed files with 713 additions and 0 deletions

7
config/environment.ts Normal file
View file

@ -0,0 +1,7 @@
export const environment: Environment = {
port: 6600,
host: "127.0.0.1",
development:
process.argv.includes("--dev") ||
process.argv.includes("--development"),
};