Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 561 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 561 Bytes

Money tracker

Visualise your personal finances.

screenshot of app

Prerequisites

  • Docker
  • Docker compose
  • Node.js 14

Quick start

Ensure docker is running. Then:

$ npm run api:up     # starts Postgres and Hasura instances
$ npm run api:dev    # starts API server
$ npm run client:dev # starts UI server

To update the API:

$ npm run api:console

Make modifications using the web UI.

To query the database directly:

$ npm run db

To update graphql typings:

$ npm run generate