Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/szymii/api
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/szymii/api
- Owner: Szymii
- Created: 2024-06-15T17:43:17.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-07-13T13:53:10.000Z (4 months ago)
- Last Synced: 2024-07-14T11:20:00.776Z (4 months ago)
- Language: TypeScript
- Size: 43 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```