UOMS ERP SYSTEM - QUICK START GUIDE 1. EXTRACT PACKAGE unzip UOMS_ERP_Complete_Installation.zip cd uoms_erp 2. IMPORT DATABASE mysql -u root -p < database/uoms_complete_setup.sql This creates: - 14 databases (uoms_settings, uoms_accounting, etc.) - Database user: uoms_user / secure_password - All tables with schema 3. COPY SERVICES cp -r services/* /home/username/public_html/services/ cp -r html/* /home/username/public_html/ 4. INSTALL DEPENDENCIES cd /home/username/public_html/services/settings composer install 5. RUN MIGRATIONS php spark migrate 6. START SERVICE php spark serve --port=3001 7. ACCESS DASHBOARD http://yourdomain.com SERVICE PORTS: - Settings: 3001 - Accounting: 3002 - Employee: 3003 - Inventory: 3004 - Sales: 3005 - Purchasing: 3006 - Projects: 3007 - Compliance: 3008 - Documents: 3009 - Quotations: 3010 - Tasks: 3011 - CRM: 3012 - Collaboration: 3013 - POS: 3014 TEST API: curl http://localhost:3001/health curl http://localhost:3001/v1/users \ -H "X-Tenant-ID: default" \ -H "X-User-ID: admin" SUPPORT: See README.md and docs/ folder for complete documentation