Feedback (Close beta)
Please take note that this project is still under heavy development.
Project information and milestone
Getting Started
The Dashboard
Change the directory to ./dashboard and install dependencies:
cd dashboard
yarnCreate the .env file from .env.example:
cp .env.example .env
vi .envRun the following command to init the database.
yarn prisma migrate dev --name initNow, seed the database with the sample data in prisma/seed.ts by running the following command:
yarn prisma db seed --preview-featureRun the development server:
yarn devOpen 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.
The Docs
Change the directory to ./docs and install dependencies:
cd docs
yarnyarn devOpen http://localhost:3001/docs with your browser to see the result.
The Widget
TBU
