STORMERHOST UPLOAD CHECKLIST
=============================

DIRECTORIES TO UPLOAD:
----------------------
✅ api/
   ✅ index.php
   ✅ config.php
   ✅ .htaccess
   ✅ middleware/
      ✅ cors.php
   ✅ handlers/
      ✅ academic.php
      ✅ assessments_extended.php
      ✅ fuel_logs.php
      ✅ scores.php
      ✅ sms.php
      ✅ subjects.php
      ✅ transport.php
      ✅ transport_attendance.php
      ✅ transport_payments.php

✅ config/
   ✅ database.php
   ✅ db_config.php

✅ .htaccess (root)

OPTIONAL (for initial setup only):
----------------------------------
⭕ database/ (remove after running migrations)

FILES TO SKIP (DO NOT UPLOAD):
-------------------------------
❌ *test*.php
❌ quick-test.php
❌ cors-test.php
❌ index_clean.php
❌ .gitignore
❌ DEPLOYMENT_STORMERHOST.md
❌ upload-checklist.txt

AFTER UPLOAD:
-------------
1. Update database credentials in api/config.php
2. Set file permissions (755 for folders, 644 for files)
3. Create logs/ directory with 755 permissions
4. Test API: https://your-domain.com/api/test
5. Remove test files if uploaded by mistake
6. Update frontend API URL if domain changed

TEST COMMANDS:
--------------
Test API: curl https://your-domain.com/api/test
Test Auth: curl -X POST https://your-domain.com/api/auth -d '{"email":"test","password":"test"}'

