Files
NetAlertX/.devcontainer/README.md
2025-09-19 16:41:28 -04:00

2.6 KiB
Raw Blame History

NetAlertX Devcontainer Notes

This devcontainer replicates the production container as closely as practical, with a few development-oriented differences.

Key behavior

  • No init process: Services are managed by shell scripts using killall, setsid, and nohup. Startup and restarts are script-driven rather than supervised by an init system.
  • Autogenerated Dockerfile: The effective devcontainer Dockerfile is generated on demand by .devcontainer/scripts/generate-dockerfile.sh. It combines the root Dockerfile (with certain COPY instructions removed) and an extra "devcontainer" stage from .devcontainer/resources/devcontainer-Dockerfile. When you change the resource Dockerfile, re-run the generator to refresh .devcontainer/Dockerfile.
  • Where to put setup: Prefer baking setup into .devcontainer/resources/devcontainer-Dockerfile. Use .devcontainer/scripts/setup.sh only for steps that must happen at container start (e.g., cleaning up nginx/php ownership, creating directories, touching runtime files) or depend on runtime paths.

Debugging (F5) The Frontend and backend run in debug mode always. You can attach your debugger at any time.

  • Python Backend Debug: Attach - The backend runs with a debugger on port 5678. Set breakpoints in the code and press F5 to begin triggering them.
  • PHP Frontend (XDebug) Xdebug listens on 9003. Start listening and use an Xdebug extension in your browser to debug PHP.

Common workflows (F1->Tasks: Run Task)

  • Regenerate the devcontainer Dockerfile: Run the VS Code task "Generate Dockerfile" or execute .devcontainer/scripts/generate-dockerfile.sh. The result is .devcontainer/Dockerfile.
  • Re-run startup provisioning: Use the task "Re-Run Startup Script" to execute .devcontainer/scripts/setup.sh in the container.
  • Start services:
    • Backend (GraphQL/Flask): .devcontainer/scripts/restart-backend.sh starts it under debugpy and logs to /app/log/app.log
    • Frontend (nginx + PHP-FPM): Started via setup.sh; can be restarted by the task "Start Frontend (nginx and PHP-FPM)".

Testing

  • pytest is installed via Alpine packages (py3-pytest, py3-pytest-cov).
  • PYTHONPATH includes workspace and venv site-packages so tests can import server/* modules and third-party libs.
  • Run tests via VS Code Pytest Runner or pytest -q from the workspace root.

Conventions

  • Dont edit .devcontainer/Dockerfile directly; edit .devcontainer/resources/devcontainer-Dockerfile and regenerate.
  • Keep setup in the resource Dockerfile when possible; reserve setup.sh for runtime fixes.
  • Avoid hardcoding ports/secrets; prefer existing settings and helpers (see .github/copilot-instructions.md).