# CPR Module (Python-based example)
gh repo create El7a2ny-Graduation-Project/CPR --private --description "CPR module" --add-readme --gitignore=Python

# Skin Burns Module (Python-based example)
gh repo create El7a2ny-Graduation-Project/Skin-Burns --private --description "Skin Burns module" --add-readme --gitignore=Python

# ECG Analysis Module (Python-based example)
gh repo create El7a2ny-Graduation-Project/ECG-Analysis --private --description "ECG Analysis module" --add-readme --gitignore=Python

# Flutter App (Flutter-specific .gitignore)
gh repo create El7a2ny-Graduation-Project/Flutter --private --description "Flutter app" --add-readme --gitignore=Flutter

# Backend Service (Node.js example – adjust if using Python/Java/etc.)
gh repo create El7a2ny-Graduation-Project/Backend --private --description "Backend service" --add-readme --gitignore=Python
for repo in CPR Skin-Burns ECG-Analysis Flutter Backend; do
  git clone <https://github.com/El7a2ny-Graduation-Project/$repo.git>
done