Initial commit: Complete Fixture Manager daemon system
- Comprehensive Python daemon system for Linux servers - Secure web dashboard with authentication and authorization - RESTful API with JWT authentication - MySQL database connectivity with connection pooling - Advanced file upload system with real-time progress tracking - Intelligent CSV/XLSX fixture parsing algorithms - Two-stage upload workflow (fixture files + ZIP files) - Full Linux daemon process management with systemd integration - Complete security implementation with rate limiting and validation - SHA1 checksum calculation and verification - Automated installation and deployment scripts - Comprehensive documentation and configuration management
Showing
.env.example
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
app/__init__.py
0 → 100644
app/api/__init__.py
0 → 100644
app/api/routes.py
0 → 100644
app/auth/__init__.py
0 → 100644
app/auth/forms.py
0 → 100644
app/auth/routes.py
0 → 100644
app/database.py
0 → 100644
app/main/__init__.py
0 → 100644
app/main/routes.py
0 → 100644
app/models.py
0 → 100644
app/upload/__init__.py
0 → 100644
app/upload/file_handler.py
0 → 100644
app/upload/fixture_parser.py
0 → 100644
app/upload/forms.py
0 → 100644
app/upload/routes.py
0 → 100644
app/utils/__init__.py
0 → 100644
app/utils/logging.py
0 → 100644
app/utils/security.py
0 → 100644
config.py
0 → 100644
daemon.py
0 → 100644
database/schema.sql
0 → 100644
install.sh
0 → 100644
prompt.txt
0 → 100644
requirements.txt
0 → 100644
| Flask==2.3.3 | |||
| Flask-SQLAlchemy==3.0.5 | |||
| Flask-Login==0.6.3 | |||
| Flask-WTF==1.1.1 | |||
| Flask-JWT-Extended==4.5.3 | |||
| PyMySQL==1.1.0 | |||
| cryptography==41.0.4 | |||
| pandas==2.1.1 | |||
| openpyxl==3.1.2 | |||
| xlrd==2.0.1 | |||
| python-daemon==3.0.1 | |||
| lockfile==0.12.2 | |||
| bcrypt==4.0.1 | |||
| Werkzeug==2.3.7 | |||
| WTForms==3.0.1 | |||
| python-dotenv==1.0.0 | |||
| gunicorn==21.2.0 | |||
| psutil==5.9.5 | |||
| watchdog==3.0.0 | |||
| click==8.1.7 | |||
| colorlog==6.7.0 | |||
| marshmallow==3.20.1 | |||
| \ No newline at end of file |
Please
register
or
sign in
to comment