📋 A project designed to help people collect feedbacks from their users 📋
First of all, clone this project and install commitlint dependencies
$ git clone https://github.com/IgorSAssis/Feed-Get
$ cd Feed-Get
$ npm install
$ cd server
$ npm install
Create a .env file and add the following settings:
DATABASE_URL=postgresql://<USER>:<PASSWORD>@localhost:5432/feedbacks
Then generate prisma artifacts and run migrations with
$ npx prisma generate
$ npx prisma migrate dev
Finally, start the server with
$ npm run dev
$ cd web
$ npm install
Create a .env.local file and add the following settings:
VITE_API_URL=http://localhost:3333
Finally, start the server with
$ npm run dev
This project is under the MIT license