Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/flawiddsouza/gsdklocal


https://github.com/flawiddsouza/gsdklocal

Last synced: about 12 hours ago
JSON representation

Awesome Lists containing this project

README

        

# GSDK Local

#### Development & Production

Setup

```sh
npm i
```

Running during development (with code reloading)

```sh
npm run dev
```

Running in production

```sh
npm start
```

#### Migrations

Generate migrations from schema.ts

```sh
npx drizzle-kit generate --name your_migration_name
```

Run generated migrations (not required as server will auto run migrations on startup)

```sh
npx drizzle-kit migrate
```

Check database data

```sh
npx drizzle-kit studio
```