This is a structured Fastify application.
├── app
│ ├── handlers
│ ├── middlewares
│ ├── models
│ ├── routers
│ ├── services
│ ├── main.js
├── node_modules
├── .env
├── .gitignore
├── docker-compose.yml
├── Dockerfile
├── .env.example
├── package.json
└── readme.md
Create a .env file in the root directory and copy the content from .env.example:
cp .env.example .env
npm run devExecute the test suite using Jest:
npm run testSwagger documentation is available at https://BASE_URL/docs.