hizumi 76ca516bf6
All checks were successful
Continuous Integration / Update Development (push) Successful in 3m43s
Merge pull request 'devcontainers' (#176) from devcontainers into main
Reviewed-on: #176
2026-02-03 20:16:12 -06:00
2025-10-28 17:47:56 -04:00
2025-12-09 20:55:41 -06:00
2026-01-26 20:41:25 -05:00

Prerequs

  • Node.js
  • npm
  • Docker + Docker Compose

Installation

Install dependencies in each workspace:

cd ui && npm install
cd ../api && npm install
cd ../shared && npm install

Local Development Setup

From the project root, start required services:

docker compose -f docker-compose.dev.yml up

Run database setup from /api:

npm run migrate:up
npm run migrate:seed

Running the App

Start the frontend:

cd ui
npm run dev

Start the API:

cd api
npm run dev
  • UI runs via Vite
  • API runs on Node after TypeScript build

Notes

  • shared must have its dependencies installed for both UI and API to work
  • docker-compose.dev.yml is required for local dev dependencies (e.g. database)
Description
We'll get it this time
Readme 11 MiB
1.1.0 Latest
2026-01-17 17:46:35 -06:00
Languages
Vue 67.2%
TypeScript 26.5%
JavaScript 4.8%
CSS 1.4%