🚀 A super simple and (mostly) un-opinionated starter app using Fastify and Typescript!
make sure you have at least node v20.9.0(lts)
and npm
installed
If it's the first time trying to run this starter project, install all the dependencies
npm install
Start the development
server by running the following command in a terminal from the root folder of the project
npm run dev
If you're in VSCode, run using the debugger by hitting F5
Build the project (outputs to ./dist
)
npm run build
Run the built project
npm start
docker build -t fastify-ts-app .
docker run -it --rm -p 3000:3000 --name fastify-ts-app fastify-ts-app