Merge pull request #2340 from MauGx3/master

fix devcontainer launch
This commit is contained in:
Georges-Antoine Assi
2025-08-30 19:15:08 -05:00
committed by GitHub
2 changed files with 19 additions and 1 deletions

18
.devcontainer/dev.env Normal file
View File

@@ -0,0 +1,18 @@
# Development environment overrides for Dev Containers
DEV_MODE=true
DEV_HTTPS=false
# Pick a host port that doesn't conflict with local services
DEV_PORT=5001
# Database defaults for development
DB_HOST=romm-db-dev
DB_NAME=romm
DB_USER=romm
DB_PASSWD=romm
DB_ROOT_PASSWD=rootpassword
# Redis
REDIS_PORT=6379
# Authentik defaults
AUTHENTIK_SECRET_KEY=secret-key-default
AUTHENTIK_BOOTSTRAP_PASSWORD=password
# Logging
LOGLEVEL=DEBUG

View File

@@ -1,6 +1,6 @@
{
"name": "ROMM Development",
"dockerComposeFile": "docker-compose.yml",
"dockerComposeFile": ["../docker-compose.yml"],
"service": "romm-dev",
"workspaceFolder": "/app",
"shutdownAction": "stopCompose",