Ignite is a scaffold for starting new Flask applications. It takes care of the boilerplate code (like User Registration, OAuth, Teams, and Billing), allowing you to focus on building your application. Ignite is built upon best practices for modern Flask applications.
Features | Status | Details |
---|---|---|
User Authentication | ✅ | User Login, Registration, Forgot Password, Email Confirmation |
OAuth Login | ✅ | Login or Register with Google, Twitter, Facebook, etc. |
Teams/Groups | ✅ | Multi user teams & groups (with Invite Emails) |
User Export & Deletion Request | ✅ | Allows users to export their data (for GDPR compliance) |
API | ✅ | API (with user tokens) users to access data |
Stripe Product Checkout | ✅ | One time item purchases with credit cards and receipts (using Stripe) |
Heroku/Docker Deployment | ✅ | Deployment instructions for some platforms. Works on AWS & Google Cloud |
Send Emails | ✅ | Send email notifications from the application |
Admin Dashboard | ✅ | Admin dashboard to edit data |
File Uploads | ✅ | File uploads to cloud storage providers |
Basic Test Suite | ✅ | Starting point for you to build out tests |
VS Code Debugger & Editor | ✅ | Configured to make you productive |
Tested on Windows 10, OSX, and Ubuntu | ✅ | Using Python 3 |
SaaS Recurring Billing | 💲 (Requires purchasing a license to Ignite) | Team Billing, Usage Based Billing or Unlimited Plans |
Commercial Usage | 💲 (License Required) | Commercial Usage requires a purchased license |
Video Content | 💲 | Available as part of the Fullstack Flask course |
Store | Comes With | Price |
---|---|---|
Fullstack Flask Course | The Fullstack Flask Course & Book, hours of videos explaining how to build a SaaS in Flask, and a single license to Ignite Pro | On Sale (for ~$199) at Newline » |
Commercial License | A license for usage on a single site | ($199) » |
Usage of Python 3 is required. It can be installed on Python.org
# Optional but recommended:
python3 -m venv env; source env/bin/activate
pip install -r requirements.txt
./manage.py server # or `FLASK_APP=manage FLASK_ENV=development flask run`
# Development
# If using a virtual env: source env/bin/activate
./manage.py resetdb # to seed data
FLASK_APP=manage FLASK_ENV=development flask run
# Go to localhost:5000 in a browser and click on Login
# Login with the following credentials "[email protected]", "test
# Production documentation in the repository.
Github Actions is configured to run tests and produce code coverage metrics.
To run tests locally, try this command:
APPNAME_ENV=test ./manage.py test --coverage
To configure OAuth login and Stripe billing in development, you will need to set some environment variables. See .env.local.sample
for an example.
cp .env.local.sample .env.local
# Edit .env.local with your Stripe & Google test keys
source .env.local
flask run
You may also want to change some of the constants in appname.constants
and the services/branding.py
file to change the name of the application in the UI.
Ignite is not tied to a specific platform for deployment, but it works well on Heroku and Dokku with minimal configuration.
It is also designed to work well on other cloud providers such as AWS, Google Cloud, and DigitalOcean.
Documentation is currently provided for installations on Dokku.
- Install the Stripe CLI
- Login to the Stripe CLI (
stripe login
) - Run
stripe listen --forward-to localhost:5000/webhooks/stripe
- Use the webhook secret and configure your app to use it (
export STRIPE_WEBHOOK_SECRET=whsec_...
) - To replay an event in a seperate console:
stripe events resend evt_XYZ
This is a commercial product. You may purchase a license for commercial use at Ignite Website
Here's a summary:
| Features | Ignite | (License) Ignite Premium | | -------------------------------------------- | -------------- | ------------------------ | --- | | Cost | Free | $199 per site | | | Private Non Commercial Use | ✅ | ✅ | | Commercial Use | No | ✅ | | Ability to remove "Powered by Ignite" footer | No | ✅ | | Video Tutorials | No | ✅ | | Re-license | No | Contact us | | Support | No | No | | Warranty | Provided As-is | Provided As-is | | Refunds | N/A | 30 Day |
You can purchase a license at the Ignite Store or on Newline as part of the Fullstack Flask course
For more detailed license information see LICENSE.md
Design elements from tabler & Bootstrap 4.
Built off of Flask Foundation and the bootstrapy project
Only building out an API using Flask?
- Use create-flask-api
Course: Fullstack Flask: Build a SaaS using Python and Flask
Best practices List: