Initial commit

This commit is contained in:
jpgiannetti
2026-01-31 11:45:11 +01:00
commit f99fb3c614
166 changed files with 115155 additions and 0 deletions

22
backend/sqlc.yaml Normal file
View File

@@ -0,0 +1,22 @@
version: "2"
sql:
- engine: "postgresql"
queries: "internal/database/queries"
schema: "migrations"
gen:
go:
package: "sqlc"
out: "internal/database/sqlc"
sql_package: "pgx/v5"
emit_json_tags: true
emit_prepared_queries: false
emit_interface: true
emit_exact_table_names: false
emit_empty_slices: true
overrides:
- db_type: "pg_catalog.uuid"
go_type: "github.com/google/uuid.UUID"
- db_type: "geography"
go_type: "string"
- db_type: "geometry"
go_type: "string"