netalertx / restarting-netalertx-services
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/restarting-netalertx-services && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/4166" && unzip -o skill.zip -d .claude/skills/restarting-netalertx-services && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/restarting-netalertx-services/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Control NetAlertX services inside the devcontainer. Use this when asked to start backend, start frontend, start nginx, start php-fpm, start crond, stop services, restart services, or check if services are running.
0 views
0 installs
Skill Content
--- name: restarting-netalertx-services description: Control NetAlertX services inside the devcontainer. Use this when asked to start backend, start frontend, start nginx, start php-fpm, start crond, stop services, restart services, or check if services are running. --- # Devcontainer Services You operate inside the devcontainer. Do not use `docker exec`. ## Start Backend (Python) ```bash /services/start-backend.sh ``` Backend runs with debugpy on port 5678 for debugging. Takes ~5 seconds to be ready. ## Start Frontend (nginx + PHP-FPM) ```bash /services/start-php-fpm.sh & /services/start-nginx.sh & ``` Launches almost instantly. ## Start Scheduler (CronD) ```bash /services/start-crond.sh ``` ## Stop All Services ```bash pkill -f 'php-fpm83|nginx|crond|python3' || true ``` ## Check Running Services ```bash pgrep -a 'python3|nginx|php-fpm|crond' ``` ## Service Ports - Frontend (nginx): 20211 - Backend API: 20212 - GraphQL: 20212 - Debugpy: 5678