3 Commits

Author SHA1 Message Date
c0fd8d6796 version
Some checks failed
🏗️✨ Build Workflow / 🖥️ 🔨 Build (push) Has been cancelled
2025-07-29 13:45:04 -04:00
a7fef89dda cors
All checks were successful
🏗️✨ Build Workflow / 🖥️ 🔨 Build (push) Successful in 20m24s
2025-07-29 13:11:12 -04:00
60e76f851e env
All checks were successful
🏗️✨ Build Workflow / 🖥️ 🔨 Build (push) Successful in 18m23s
2025-07-29 13:06:54 -04:00
4 changed files with 7 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
FROM node:22.14.0 AS frontend FROM node:22.14.0 AS frontend
ENV VITE_API=""
WORKDIR /frontend WORKDIR /frontend
ADD frontend/ ./ ADD frontend/ ./
RUN npm install && npm run build RUN npm install && npm run build

Submodule backend updated: 3c6750ab13...42bd95d804

View File

@@ -19,7 +19,7 @@ services:
- "--entrypoints.web.http.redirections.entrypoint.permanent=true" - "--entrypoints.web.http.redirections.entrypoint.permanent=true"
api: api:
image: scr.siteworxpro.com/gun-manager:v0.0.2 image: scr.siteworxpro.com/gun-manager:v0.0.6
container_name: gun-manager container_name: gun-manager
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
@@ -32,3 +32,5 @@ services:
command: command:
- "-database" - "-database"
- "./data/gun_inventory.sqlite" - "./data/gun_inventory.sqlite"
environment:
CORS_ORIGINS: "https://localhost"