This is BackEnd Repository of Telbby, a service that can be introduced into my project to exchange feedback with various users.
- TypeScript
- Node.js
- Express
- TypeDI
- TypeORM
- Heroku
- MySQL
src
├── api
├── routes # routes & controllers
├── middlewares # middlewares
├── validation # backend validation
└── index.ts
├── config # environment variables and configuration
├── constants # constants
├── entity # database entities
├── helpers # helper functions
├── loaders # startup process modules
├── repositories # database access logic
├── services # business logic
├── types # types
├── utils # utility functions
└── app.ts # App entry point
tests
├── helpers
└── utils
- Install Node.js.
- Refer to the
.mock.env
file and create the.env
file in the root directory.
development mode
yarn install
yarn dev
production mode
yarn install
yarn build
yarn start
This project is licensed under the MIT License - see the LICENSE file for details.