Fincheck is a web app that help the users to track their financial life.
This was build during the JStack course and the reason behind doing this project was to improve my backend knowledge on NestJS and build a beautifull interface with React.
To continue the setup of this project you must have Docker, Git and Node.js installed on your machine
git clone [email protected]:galleonpt/fincheck.git
cd api
npm install
docker run --name pg -e POSTGRES_USER=root -e POSTGRES_PASSWORD=root -p 5432:5432 -d postgres
## create the .env file following the example on .env.example
npx prisma migrate dev
npm run start:dev
cd frontend
npm install
npm run dev