first commit
This commit is contained in:
commit
b11c87a506
26 changed files with 1782 additions and 0 deletions
12
config/environment.ts
Normal file
12
config/environment.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
export const environment: Environment = {
|
||||
port: parseInt(process.env.PORT || "8080", 10),
|
||||
host: process.env.HOST || "0.0.0.0",
|
||||
development:
|
||||
process.env.NODE_ENV === "development" ||
|
||||
process.argv.includes("--dev"),
|
||||
};
|
||||
|
||||
export const lanyardConfig: LanyardConfig = {
|
||||
userId: process.env.LANYARD_USER_ID || "",
|
||||
instance: process.env.LANYARD_INSTANCE || "https://api.lanyard.rest",
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue