An open API service indexing awesome lists of open source software.

https://github.com/inhibitor1217/lemma

(WIP) i18n web service
https://github.com/inhibitor1217/lemma

aws aws-lambda fastify functional-programming prisma react typescript

Last synced: about 2 months ago
JSON representation

(WIP) i18n web service

Awesome Lists containing this project

README

          

# lemma

## Get Started

### Setup local development environment

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

```bash
yarn setup:local

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

### Install dependencies

```bash
yarn install
```

### Sync RDS schema with local database

```bash
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

```bash
yarn workspace @lemma/http start:dev
```

### Run local development app

```bash
yarn workspace @lemma/app dev
```