Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 431 Bytes

File metadata and controls

23 lines (14 loc) · 431 Bytes

coding-challenges

Seeding Data

The project includes a seeder that can operate in two modes:

Database Seeding (Default)

Seeds the database with dynamically generated questions, inputs, and answers:

go run cmd/seed/seed.go

Testing

Once you see the database you can run:

DB_FILE="file:../../../test.db" go test ./... -v

This will run the tests. As long as they all pass you're good to go!