typescript(multiplayer-backend): email validation tests
Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
parent
87d8999c68
commit
1544ca69e2
14 changed files with 5236 additions and 0 deletions
typescript/multiplayer-backend
22
typescript/multiplayer-backend/config.ts
Normal file
22
typescript/multiplayer-backend/config.ts
Normal file
|
@ -0,0 +1,22 @@
|
|||
//public config
|
||||
|
||||
//interfaces
|
||||
export interface routeList {
|
||||
[key: string]: string
|
||||
}
|
||||
export interface whiteListUrl {
|
||||
url: string
|
||||
methods?: string
|
||||
}
|
||||
|
||||
//routes
|
||||
export const baseUrl = "./src/routes/"
|
||||
export const routes: routeList = {
|
||||
"/logs": "logging/logs.ts",
|
||||
"/auth": "auth/auth.ts"
|
||||
}
|
||||
|
||||
//whitelist of urls
|
||||
export const whiteList = [{
|
||||
url: "http://localhost:4200"
|
||||
}]
|
Loading…
Add table
Add a link
Reference in a new issue