initial setup, messing around with sqlc

This commit is contained in:
zardzul
2026-03-10 20:22:07 +01:00
parent 9f9054e53b
commit 5fa23b0d1c
11 changed files with 332 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM postgres:18.3-alpine3.23
# Set environment variables for PostgreSQL
ENV POSTGRES_USER=${POSTGRES_USER}
ENV POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
ENV POSTGRES_DB=${POSTGRES_DB}
# Copy the database setup script
COPY db.sql /docker-entrypoint-initdb.d/01_init.sql