https://github.com/4rays/combolab-web
https://github.com/4rays/combolab-web
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/4rays/combolab-web
- Owner: 4rays
- Created: 2025-02-19T22:25:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-23T19:54:02.000Z (about 1 year ago)
- Last Synced: 2025-02-23T20:32:40.861Z (about 1 year ago)
- Language: TypeScript
- Size: 262 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# combolab-web
## Initial Setup
To install dependencies:
```bash
bun install
```
## Development
To run:
```bash
bun run dev
```
The app uses Postgres for the database. For local development, PGLite is used instead.
To create the database:
```bash
bun run db:create:dev
```
To drop the local database:
```bash
bun run db:teardown:dev
```
To generate migrations:
```bash
bun run db:migrations:create:dev
```
To apply migrations:
```bash
bun run db:migrations:apply:dev #or
bun run db:migrations:apply:prod
```
To view the database via Drizzle Studio:
```bash
bun run db:view:dev #or
bun run db:view:prod
```