You'll need Node.js installed. You can get it , or with your favorite package manager. Alternatively, if you're on macOS or Linux, we recommend
. Follow the instructions in their repository and run
nvm install --lts
.
The project consists of a Node.js/Express.js/Sqlite3 backend, found in /server
. To start the backend, run:
cd server
npm install
node index
This will most likely start the server on .
The Vue UI can be found in /frontend
. To start the development server, run:
cd frontend
npm install
npm run serve
This will most likely start the server on . Navigate to this in your browser and the app will load.