gitextract_tb8zvos5/ ├── IndiaLIMS.spec ├── LIMS.spec ├── README.md ├── app.py ├── build_exe.py ├── clean_db.py ├── config.py ├── core/ │ ├── __init__.py │ ├── database.py │ ├── logic.py │ └── security.py ├── gis_processor.py ├── inno_setup.iss ├── render.yaml ├── report_generator.py ├── requirements-dev.txt ├── requirements-windows.txt ├── requirements.txt ├── routes/ │ ├── __init__.py │ ├── auth.py │ ├── documents.py │ ├── feedback.py │ ├── gis.py │ ├── pages.py │ ├── records.py │ ├── users.py │ └── utils.py ├── run_server.py ├── scripts/ │ ├── inspect_recovery.py │ ├── recover_superadmin_auto.py │ └── recovery_credentials_2026-04-25T050759_400298.txt ├── static/ │ ├── css/ │ │ └── style.css │ ├── data/ │ │ └── india-boundary.geojson │ └── js/ │ ├── api.js │ ├── auth.js │ ├── map.js │ ├── map_OLD_BAK.js │ └── modules/ │ ├── admin.js │ ├── dashboard.js │ ├── forms.js │ ├── gis.js │ ├── map_engine.js │ ├── records.js │ ├── state.js │ └── utils.js ├── templates/ │ ├── admin_dashboard.html │ ├── login.html │ └── public_viewer_v2.html ├── tests/ │ ├── Testing_Report_20260425_211328.md │ ├── Testing_Report_20260426_013232.md │ ├── Testing_Report_20260426_095300.md │ ├── Testing_Report_20260426_125456.md │ ├── Testing_Report_20260426_132557.md │ ├── Testing_Report_20260426_132640.md │ ├── check_users_roles.py │ ├── generate_test_report.py │ ├── robust_role_test.py │ ├── test_advanced_gis.py │ ├── test_logins.py │ ├── test_output/ │ │ └── Village_Ledger_Amingaon.xlsx │ ├── test_record_soft_delete.py │ ├── test_recovery_flow.py │ ├── test_report_gen.py │ └── test_restore_flow.py └── utils.py