├── .env ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .nvmrc ├── Dockerfile ├── LICENSE ├── README.md ├── biome.json ├── package.json ├── src ├── index.ts ├── plugins │ └── config.ts ├── routes │ └── index.ts └── server.ts ├── tests ├── routes │ └── index.test.ts └── server.test.ts ├── tsconfig.json └── vite.config.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugins/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/src/plugins/config.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/src/server.ts -------------------------------------------------------------------------------- /tests/routes/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/tests/routes/index.test.ts -------------------------------------------------------------------------------- /tests/server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/tests/server.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonathan06/fastify-typescript-starter/HEAD/vite.config.ts --------------------------------------------------------------------------------