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

https://github.com/4rays/combolab-web


https://github.com/4rays/combolab-web

Last synced: 5 months ago
JSON representation

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