Caution
This project is under active development and is not production-ready.
Breaking changes may occur at any time.
A React application built with Vite.
- Node.js (version 16.x or higher recommended)
- npm (comes with Node.js)
Install dependencies
npm installTo start the development server with hot-reload:
npm run devThis will start the development server at http://localhost:5173 (or another port if 5173 is in use).
To build the application for production:
npm run buildThe build output will be in the dist directory.
To preview the production build locally:
npm run previewThis will serve the production build at http://localhost:4173 (or another port if 4173 is in use).
For development and debugging, this project uses CouchDB. See the couchdb/ directory for complete setup instructions and Docker configuration.
Quick start:
cd couchdb
cp .env.example .env
docker-compose up -dnpm run lint- Run ESLint to check code qualitynpm test- Run tests (if configured)