🤙Feedback is a platform built with Next.js, TypeScript & Prisma to collect issues, ideas, and compliments.
Please take note that this project is still under heavy development.
Project information and milestone
Change the directory to ./dashboard
and install dependencies:
cd dashboard
yarn
Create the .env
file from .env.example
:
cp .env.example .env
vi .env
Run the following command to init the database.
yarn prisma migrate dev --name init
Now, seed the database with the sample data in prisma/seed.ts by running the following command:
yarn prisma db seed --preview-feature
Run the development server:
yarn dev
Open http://localhost:3000 with your browser to see the result.
Note: The dashboard using Next proxy to route http://localhost:3000/docs to http://localhost:3001/docs Please start the dashboard and the docs at the same time.
Change the directory to ./docs
and install dependencies:
cd docs
yarn
yarn dev
Open http://localhost:3001/docs with your browser to see the result.
TBU