feat: add app launcher and desktop shortcut setup scripts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Gitead
2026-05-25 23:54:55 -04:00
parent fcb049273a
commit 783e63c9ea
2 changed files with 31 additions and 0 deletions

7
start-app.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
PROJECT_DIR="$HOME/Desktop/DentalManagementMH06"
SELENIUM_DIR="$PROJECT_DIR/apps/SeleniumService"
qterminal --title "Dental App - Dev Server" -e bash -c "cd '$PROJECT_DIR' && npm run dev; exec bash" &
qterminal --title "Dental App - Selenium" -e bash -c "cd '$SELENIUM_DIR' && .venv/bin/python agent.py; exec bash" &