Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hattorikanto/fastify-todo-app-with-db
Backend part of the todo application that using Prisma ORM and Fastify.
https://github.com/hattorikanto/fastify-todo-app-with-db
fastify postgresql prisma typescript versel
Last synced: 9 days ago
JSON representation
Backend part of the todo application that using Prisma ORM and Fastify.
- Host: GitHub
- URL: https://github.com/hattorikanto/fastify-todo-app-with-db
- Owner: hattoriKanto
- Created: 2024-05-31T19:12:50.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-03T22:43:30.000Z (7 months ago)
- Last Synced: 2024-06-04T23:54:38.702Z (7 months ago)
- Topics: fastify, postgresql, prisma, typescript, versel
- Language: TypeScript
- Homepage: https://fastify-todo-app-with-db.vercel.app
- Size: 49.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo App Backend
Welcome to the Todo App Backend repository! This project serves as the backend for the Todo App (the link to the frontend repo is down below), providing a robust and efficient API to manage tasks. The backend is designed to be fast, scalable, and maintainable.
## Backend technologies that were used:
- **Fastify**: serves as the web server framework, handling incoming HTTP requests, routing, and serving responses.
- **Prisma ORM**: acts as the bridge between the application code and the database.
- **Typescript**: adds type safety and helps catch errors early in development.## Database that was used:
- **PostgreSQL**: the relational database stores the application's data.## To run the project locally
**To run the project you need to have Node.js v18 and higher.**
- Clone repo to your local folder:
`git clone https://github.com/hattoriKanto/fastify-todo-app-with-db.git`
- Install all dependencies:
`npm i`
- To run the project locally you must use this command:
`npm run dev`## Links
The project was deployed on **Vercel**, ensuring fast and reliable hosting.
Link to the frontend repo: [FRONTEND](https://github.com/hattoriKanto/react-todo-app-with-db)