Built from the cycle planner repo as a base backend express typescript repo
backend/
├── src/
│ ├── server.ts # App entry point
| |─ test/ # Test
│ ├── app.ts # Express app setup
│ ├── routes/ # API routes
│ └── modules/ # Feature modules 
├── dist/ # Compiled output (after build)
├── package.json
├── tsconfig.json
└── README.md
Run in watch mode with hot reload:
npm run dev
App will be available at 👉 http://localhost:3000
This project is licensed under the MIT License.