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.
- Host: GitHub
- URL: https://github.com/nirnejak/100kdevjobs
- Owner: nirnejak
- License: mit
- Created: 2025-03-25T23:13:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-01-19T23:38:24.000Z (7 months ago)
- Last Synced: 2026-01-20T05:23:23.632Z (7 months ago)
- Language: TypeScript
- Homepage: https://100kdevjobs.vercel.app
- Size: 758 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Agents: AGENTS.md
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
```
---