Files
Rezepte/.env

31 lines
948 B
Bash

# Development Environment - Linux Server
# Generated on Mon Sep 22 05:45:27 PM UTC 2025
# Server Configuration
HOST_IP=192.168.178.94
DEVELOPMENT_MODE=true
# Database Configuration (local development DB)
MYSQL_PASSWORD=dev_password_123
MYSQL_ROOT_PASSWORD=dev_root_password_123
# CORS Configuration for remote access
CORS_ORIGIN=http://esprimo:3000,http://localhost:3000,http://localhost:5173
# Development URLs:
# - Frontend: http://192.168.178.94:3000
# - Backend API: http://192.168.178.94:3001/api
# - phpMyAdmin: http://192.168.178.94:8080
# - MySQL: 192.168.178.94:3307
# Registry Configuration (for image pulls)
DOCKER_REGISTRY=docker.citysensor.de
# DOCKER_USERNAME=your_username
# DOCKER_PASSWORD=your_password
# Development Notes:
# - Use this for testing Linux-specific behavior
# - Access from Mac via: http://192.168.178.94:3000
# - SSH tunnel for secure access: ssh -L 3000:192.168.178.94:3000 user@server
ALLOW_INSECURE_CORS=0