Chore: rename api->camera-management-api and web->management-dashboard-web-app; update compose, ignore, README references

This commit is contained in:
Alireza Vaezi
2025-08-07 22:07:25 -04:00
parent 28dab3a366
commit fc2da16728
281 changed files with 19 additions and 19 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python3
"""
Main entry point for the USDA Vision Camera System.
This script starts the complete system including MQTT monitoring, camera management,
and video recording based on machine state changes.
"""
import sys
import os
# Add the current directory to Python path to import our modules
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from usda_vision_system.main import main
if __name__ == "__main__":
main()