added user and role APIs and fixed some items that were missing
Test Workflow / test-and-lint (pull_request) Successful in 45s
Build and Push Image / build-and-push (pull_request) Failing after 2m16s

This commit is contained in:
2026-05-15 23:32:18 -07:00
parent 2636816241
commit 819bfa8cee
7 changed files with 280 additions and 4 deletions
+12
View File
@@ -1,8 +1,20 @@
FROM node:24-alpine
ARG DATABASE_URL
ARG DB_HOST
ARG DB_USERNAME
ARG DB_PASSWORD
ARG DB_PORT
ARG DB_DATABASE
ARG JWT_SECRET
ENV DATABASE_URL=${DATABASE_URL}
ENV DB_HOST=${DB_HOST}
ENV DB_USERNAME=${DB_USERNAME}
ENV DB_PASSWORD=${DB_PASSWORD}
ENV DB_PORT=${DB_PORT}
ENV DB_DATABASE=${DB_DATABASE}
ENV JWT_SECRET=${JWT_SECRET}
WORKDIR /app
COPY . .