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

https://github.com/nirnejak/100kdevjobs

Find tech jobs that pays $100k+ in USA, Europe, India.
https://github.com/nirnejak/100kdevjobs

Last synced: 7 months ago
JSON representation

Find tech jobs that pays $100k+ in USA, Europe, India.

Awesome Lists containing this project

README

          


100k Dev Jobs

---

## Available Scripts

**Install Dependencies**

```bash
bun install
```

**Setup Pre-commit**

```bash
bun run prepare
```

**Start Development Server**

```bash
bun run dev
```

**Lint all the files**

```bash
bun run lint
```

**Format all files with Prettier**

```bash
bun run format
```

**Check TypeScript issues**

```bash
bun run type-check
```

**Create Migrations**

```bash
bun run db:generate
```

**Run Migrations**

```bash
bun run db:migrate
```

**Push Migration changes**

```bash
bun run db:push
```

**Build for Production**

```bash
bun run build
```

**Start Production Server**

```bash
bun start
```

---