Basic TO-DO's or Tasks application to take note of task or reminders to complete
- NextJS, Redux Toolkit, Prisma, PostgreSQL, Docker, Vercel
Steps to run the app in development mode
- Start the DB
docker compose up -d
-
Create a copy of .env.template file called .env to set the user of the DB
-
Replace the environment variables
-
Install the dependencies of the project executing the command:
npm install
-
Run the project under development mode to start the project executing the command:
npm run dev
-
Execute the following Prisma commands to migrate the info of the DB and generate the schemas:
npx prisma migrate dev
npx prisma generate
- Execute the seed to create the local DB
User: test1@google.com Password: 123456
npx prisma init
npx prisma migrate dev
npx prisma generate