chore(docs): Bouw docs automatisch in staging
This commit is contained in:
parent
6574a7eee5
commit
d1f94588b8
2 changed files with 40 additions and 1 deletions
21
backend/.env-old
Normal file
21
backend/.env-old
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
PORT=3000
|
||||||
|
DWENGO_DB_HOST=db
|
||||||
|
DWENGO_DB_PORT=5432
|
||||||
|
DWENGO_DB_USERNAME=postgres
|
||||||
|
DWENGO_DB_PASSWORD=postgres
|
||||||
|
DWENGO_DB_UPDATE=false
|
||||||
|
|
||||||
|
DWENGO_AUTH_STUDENT_URL=http://localhost/idp/realms/student
|
||||||
|
DWENGO_AUTH_STUDENT_CLIENT_ID=dwengo
|
||||||
|
DWENGO_AUTH_STUDENT_JWKS_ENDPOINT=http://idp:7080/idp/realms/student/protocol/openid-connect/certs
|
||||||
|
DWENGO_AUTH_TEACHER_URL=http://localhost/idp/realms/teacher
|
||||||
|
DWENGO_AUTH_TEACHER_CLIENT_ID=dwengo
|
||||||
|
DWENGO_AUTH_TEACHER_JWKS_ENDPOINT=http://idp:7080/idp/realms/teacher/protocol/openid-connect/certs
|
||||||
|
|
||||||
|
# Allow Vite dev-server to access the backend (for testing purposes). Don't forget to remove this in production!
|
||||||
|
#DWENGO_CORS_ALLOWED_ORIGINS=http://localhost/,127.0.0.1:80,http://127.0.0.1,http://localhost:80,http://127.0.0.1:80,localhost
|
||||||
|
DWENGO_CORS_ALLOWED_ORIGINS=http://localhost/*,http://idp:7080,https://idp:7080
|
||||||
|
|
||||||
|
# Logging and monitoring
|
||||||
|
|
||||||
|
LOKI_HOST=http://logging:3102
|
|
@ -22,6 +22,24 @@ COPY docs ./docs
|
||||||
|
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
|
FROM node:22 AS docs-stage
|
||||||
|
|
||||||
|
WORKDIR /app/dwengo
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
|
||||||
|
COPY package*.json ./
|
||||||
|
COPY docs/package.json ./docs/
|
||||||
|
|
||||||
|
RUN npm install --silent
|
||||||
|
|
||||||
|
# Build the docs
|
||||||
|
|
||||||
|
COPY docs ./docs
|
||||||
|
COPY backend ./backend
|
||||||
|
|
||||||
|
RUN npm run swagger -w docs
|
||||||
|
|
||||||
FROM node:22 AS production-stage
|
FROM node:22 AS production-stage
|
||||||
|
|
||||||
WORKDIR /app/dwengo
|
WORKDIR /app/dwengo
|
||||||
|
@ -34,6 +52,7 @@ COPY ./backend/i18n ./i18n
|
||||||
|
|
||||||
COPY --from=build-stage /app/dwengo/common/dist ./common/dist
|
COPY --from=build-stage /app/dwengo/common/dist ./common/dist
|
||||||
COPY --from=build-stage /app/dwengo/backend/dist ./backend/dist
|
COPY --from=build-stage /app/dwengo/backend/dist ./backend/dist
|
||||||
|
COPY --from=docs-stage /app/dwengo/docs/api/swagger.json ./docs/api/swagger.json
|
||||||
|
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
COPY backend/package.json ./backend/
|
COPY backend/package.json ./backend/
|
||||||
|
@ -42,7 +61,6 @@ COPY common/package.json ./common/
|
||||||
|
|
||||||
RUN npm install --silent --only=production
|
RUN npm install --silent --only=production
|
||||||
|
|
||||||
COPY ./docs ./docs
|
|
||||||
COPY ./backend/i18n ./backend/i18n
|
COPY ./backend/i18n ./backend/i18n
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue