├── .env.template ├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── package.json ├── public └── index.html ├── src ├── app.ts ├── config │ └── envs.ts └── presentation │ ├── routes.ts │ └── server.ts └── tsconfig.json /.env.template: -------------------------------------------------------------------------------- 1 | 2 | 3 | PORT=3000 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/public/index.html -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/config/envs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/src/config/envs.ts -------------------------------------------------------------------------------- /src/presentation/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/src/presentation/routes.ts -------------------------------------------------------------------------------- /src/presentation/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/src/presentation/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/node-ts-express-shell/HEAD/tsconfig.json --------------------------------------------------------------------------------