Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/szymii/api


https://github.com/szymii/api

Last synced: 14 days ago
JSON representation

Awesome Lists containing this project

README

        

## To install dependencies:

```bash
bun install
```

Scripts:

```bash
"dev": "bun --watch index.ts",
"test": "bun --watch test",
"format": "bun biome format ./app --write",
"lint": "bun biome check --apply-unsafe ./app" # Fire some error at the and but works
"migrate": "bun run ./app/_migrations/runMigrations.ts"
```

`bun install --production` is currently bugged, so you have to comment `"prepare": "husky install"`. Do not worry about biome errors on package json. Bun allows comments but biome not :/

https://github.com/oven-sh/bun/issues/7969

This project was created using `bun init` in bun v1.0.0. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.

## Migrations

run to create empty database with basic tables
```bash
bun migrate
```