💡 서비스 소개: 친구들과 함께 챌린지를 만들고, 만든 챌린지를 같이 수행하는 서비스
- TypeScript
- Node.js
- Express
- TypeORM
- MySQL
src
├── config # environment variables and configuration
├── constants # constants
├── controllers # controllers
├── entity # database entities
├── loaders # startup process modules
├── middlewares # middlewares
├── repositories # repositories
├── routes # router
├── services # services
├── shared # shared
├── utils # utility functions
├── app.ts # App entry point
└── ormconfig.ts # ORMConfig
- Install Node.js.
- Refer to the
.mock.env
file and create the.env
&.env.dev
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.