Initial V1 Backup

This commit is contained in:
Javier
2026-01-22 00:36:01 -06:00
commit 4c5a588197
27 changed files with 7509 additions and 0 deletions

20
start.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# ScanLook Startup Script
echo "🚀 Starting ScanLook Inventory Management System..."
echo ""
echo "📊 Access the application at:"
echo " - Local: http://localhost:5000"
echo " - Network: http://$(hostname -I | awk '{print $1}'):5000"
echo ""
echo "👤 Default Login Credentials:"
echo " Owner: owner / owner123"
echo " Admin: admin / admin123"
echo " Staff: staff1 / staff123"
echo ""
echo "Press Ctrl+C to stop the server"
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
echo ""
cd "$(dirname "$0")"
python app.py