- Changed ownership of all files to scheianu:scheianu - Set directories to 755 permissions (rwxr-xr-x) - Set files to 644 permissions (rw-r--r--) - Made shell scripts executable (755) - Allows development without requiring sudo for file modifications - Improves development workflow and security
48 lines
707 B
Plaintext
48 lines
707 B
Plaintext
# Core Flask
|
|
Flask==3.1.0
|
|
Werkzeug==3.1.3
|
|
Jinja2==3.1.5
|
|
itsdangerous==2.2.0
|
|
click==8.1.8
|
|
|
|
# Flask Extensions
|
|
Flask-SQLAlchemy==3.1.1
|
|
Flask-Migrate==4.1.0
|
|
Flask-Bcrypt==1.0.1
|
|
Flask-Login==0.6.3
|
|
Flask-Caching==2.1.0
|
|
|
|
# Database
|
|
SQLAlchemy==2.0.37
|
|
alembic==1.14.1
|
|
|
|
# Date parsing
|
|
python-dateutil==2.9.0
|
|
|
|
# File Processing
|
|
pdf2image==1.17.0
|
|
Pillow==11.0.0
|
|
ffmpeg-python==0.2.0
|
|
python-magic==0.4.27
|
|
|
|
# Security
|
|
bcrypt==4.2.1
|
|
Flask-Talisman==1.1.0
|
|
Flask-Cors==4.0.0
|
|
|
|
# Production Server
|
|
gunicorn==23.0.0
|
|
# gevent==23.9.1 # Commented out - not compatible with Python 3.13 yet
|
|
|
|
# Monitoring
|
|
psutil==6.1.0
|
|
|
|
# Utilities
|
|
python-dotenv==1.0.1
|
|
|
|
# Development
|
|
black==24.4.2
|
|
flake8==7.0.0
|
|
pytest==8.2.0
|
|
pytest-cov==5.0.0
|