Passing Test, routes and config to ts and tsx format.

This commit is contained in:
2022-05-23 15:32:14 +00:00
parent 5fb382832d
commit 1c5117f6d4
7 changed files with 8 additions and 8 deletions

6
config/index.ts Normal file
View File

@ -0,0 +1,6 @@
const config = {
env: process.env.ENV ? process.env.ENV : 'production',
port: process.env.PORT ? process.env.PORT : 80,
};
export default config;