Initial commit - LEGO Instructions Manager v1.5.0

This commit is contained in:
2025-12-09 17:20:41 +11:00
commit 63496b1ccd
68 changed files with 9131 additions and 0 deletions

21
.env.example Normal file
View File

@@ -0,0 +1,21 @@
# Flask Configuration
FLASK_APP=run.py
FLASK_ENV=development
SECRET_KEY=your-secret-key-change-this-in-production
# Database Configuration
DATABASE_URL=sqlite:///lego_instructions.db
# For PostgreSQL: postgresql://username:password@localhost/lego_instructions
# Brickset API Configuration
BRICKSET_API_KEY=your-brickset-api-key-here
BRICKSET_USERNAME=your-brickset-username
BRICKSET_PASSWORD=your-brickset-password
# Upload Configuration
UPLOAD_FOLDER=app/static/uploads
MAX_CONTENT_LENGTH=52428800 # 50MB max file size
ALLOWED_EXTENSIONS=pdf,png,jpg,jpeg,gif
# Application Configuration
SETS_PER_PAGE=20