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
- Host: GitHub
- URL: https://github.com/inhibitor1217/lemma
- Owner: inhibitor1217
- Created: 2022-08-21T02:38:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-28T16:02:56.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T02:22:08.905Z (over 2 years ago)
- Topics: aws, aws-lambda, fastify, functional-programming, prisma, react, typescript
- Language: TypeScript
- Homepage:
- Size: 39.1 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```