Skip to content

inhibitor1217/lemma

Repository files navigation

lemma

Get Started

Setup local development environment

Create docker containers for local development. This will setup a local Postgres database, etc.

yarn setup:local

# You may shutdown the containers with:
yarn shutdown:local

Install dependencies

yarn install

Sync RDS schema with local database

yarn workspace @lemma/prisma-client generate       # Generate @prisma/client with the schema
yarn workspace @lemma/prisma-client migrate:local  # Apply the schema to the local database

Run local development server

yarn workspace @lemma/http start:dev

Run local development app

yarn workspace @lemma/app dev