Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flawiddsouza/gsdklocal
https://github.com/flawiddsouza/gsdklocal
Last synced: about 12 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/flawiddsouza/gsdklocal
- Owner: flawiddsouza
- Created: 2024-07-30T07:17:22.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T16:10:18.000Z (3 months ago)
- Last Synced: 2024-10-12T13:12:59.121Z (about 1 month ago)
- Language: TypeScript
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```