Initial commit - LEGO Instructions Manager v1.5.0
This commit is contained in:
21
.env.example
Normal file
21
.env.example
Normal 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
|
||||
Reference in New Issue
Block a user