first commit

This commit is contained in:
creations 2025-05-18 19:12:34 -04:00
commit 25e7da24e6
Signed by: creations
GPG key ID: 8F553AA4320FC711
17 changed files with 300 additions and 0 deletions

6
types/config.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
type Environment = {
port: number;
host: string;
development: boolean;
fqdn: string;
};