Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 586 Bytes

README.md

File metadata and controls

55 lines (35 loc) · 586 Bytes

General Tester

Development

ui

bun dev

Navigate to http://localhost:5173

api

Running

bun dev

Navigate to http://localhost:9002

Migrations

Generate migrations from schema.ts

bun drizzle-kit generate --name your_migration_name

Run generated migrations

bun drizzle-kit migrate

Check database data

bun drizzle-kit studio

Docker

Build

docker build -t flawiddsouza/general-tester:0.0.1 .

Run

docker run --name general-tester -it -p 9002:9002 flawiddsouza/general-tester:0.0.1