feat: Update frontend and backend configurations for development environment

- Downgrade PyP100 version in requirements.txt for compatibility.
- Add new frontend routes for index, login, dashboard, printers, jobs, and profile pages.
- Modify docker-compose files for development setup, including environment variables and service names.
- Update Caddyfile for local development with Raspberry Pi backend.
- Adjust health check route to use updated backend URL.
- Enhance setup-backend-url.sh for development environment configuration.
"""
This commit is contained in:
2025-05-24 18:58:17 +02:00
parent ead75ae451
commit 62e131c02f
19 changed files with 3433 additions and 105 deletions

View File

@@ -5,25 +5,34 @@ services:
frontend:
build:
context: .
dockerfile: Dockerfile
container_name: myp-rp
dockerfile: Dockerfile.dev
container_name: myp-rp-dev
restart: unless-stopped
environment:
- NODE_ENV=production
- NEXT_PUBLIC_API_URL=https://m040tbaraspi001.de040.corpintra.net/api
- NODE_ENV=development
- NEXT_PUBLIC_API_URL=http://192.168.0.105:5000
- NEXT_PUBLIC_BACKEND_HOST=192.168.0.105:5000
- DEBUG=true
- NEXT_DEBUG=true
volumes:
- .:/app
- /app/node_modules
- /app/.next
ports:
- "3000:3000"
networks:
- myp-network
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:3000/api/health"]
test: ["CMD", "wget", "--spider", "http://localhost:3000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# Caddy Proxy
# Caddy Proxy (Entwicklung)
caddy:
image: caddy:2.7-alpine
container_name: myp-caddy
container_name: myp-caddy-dev
restart: unless-stopped
ports:
- "80:80"
@@ -36,9 +45,10 @@ services:
- myp-network
extra_hosts:
- "host.docker.internal:host-gateway"
- "raspberrypi:192.168.0.105"
environment:
- CADDY_HOST=53.37.211.254
- CADDY_DOMAIN=m040tbaraspi001.de040.corpintra.net
- CADDY_HOST=localhost
- CADDY_DOMAIN=localhost
cap_add:
- NET_ADMIN