#!/usr/bin/env python3 """ PunimTag - Intelligent Photo Management System Main entry point for the PunimTag application. """ import sys import os # Add src directory to Python path sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src')) from backend.app import app if __name__ == '__main__': print("Starting PunimTag...") print("Access the application at: http://localhost:5000") app.run(host='0.0.0.0', port=5000, debug=True)