- User registration/login with bcrypt password hashing - SQLite database with goose migrations and sqlc-generated queries - Games and players persisted to database, resumable after restart - Guest play still supported alongside authenticated users - Auth UI components (login/register forms, auth header, guest banner)
10 lines
148 B
YAML
10 lines
148 B
YAML
version: "2"
|
|
sql:
|
|
- engine: "sqlite"
|
|
queries: "queries"
|
|
schema: "migrations"
|
|
gen:
|
|
go:
|
|
package: "gen"
|
|
out: "gen"
|