This is the dashboard for Rico, a Discord bot for exchanging notes and maintaining threads. It's written in Nuxt.js v3 and it uses Pinia for maintaining state.
Being a frontend, it's meant to be used in tandem with Rico's backend, powered by PostgreSQL. Therefore, when developing locally, it is recommended that one use Docker Compose to run the backend and the frontend together. Details are on the main Rico repository.
Install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
Make your changes, then start the development server on http://localhost:3000:
npm run dev