Flask Project Generator
Generate a production-ready Flask project with your choice of features. No bloat, just the essentials.
Project Configuration
File Structure Preview
Configure your project to see the file structure
What's Included:
Next Steps:
- Download and extract the ZIP file
- Create a virtual environment:
python -m venv venv - Activate it and install dependencies:
pip install -r requirements.txt - Copy
.env.exampleto.envand fill in your credentials - If using PostgreSQL, create your tables:
psql -d myapp -f schema.sql - Start the server:
flask run