Ignite is a minimal Flask starter template designed to help you quickly set up and launch your Flask applications. It comes pre-configured with a basic folder structure.
- 01.01.2025 - Added
Procfileto facilitate deployment on Heroku.
your_project/
│
├── app.py # Main application file
├── static/ # Static files (CSS, JS, Images)
│ ├── css/
│ │ └── style.css # Your main stylesheet
│ ├── js/
│ │ └── script.js # Your JavaScript file
│ └── imag/ # Folder for images
│ └── example.jpg # Example image file
├── templates/ # HTML files
│ ├── base.html # Base template for the app
│ └── index.html # Your main page extending the base template
├── data/ # Folder containing data
│ └── data.json # Sample JSON data file
├── requirements.txt # List of required Python packages
├── Procfile # For Heroku deployment
├── .gitignore # Git ignore file
└── README.md # Project documentation