A framework for the next decade, this is a collection of cutting-edge libraries and tools based on Flask framework.
To learn more about the framework and its use cases, you can follow my articles on Medium :
If you are prefer to use a SQL compatible backend, please check out the "sql" branch.
- First steps: create your first website with Enferno : https://medium.com/project-enferno/moonwalking-with-project-enferno-402937628745
- Customize your website : https://medium.com/project-enferno/moonwalking-with-project-enferno-part-2-9a23d39af55a
- Create a simple blog in 5 minutes: https://medium.com/project-enferno/create-a-simple-blog-in-5-min-using-project-enferno-be359ae77788?source=1
- Create a comic website with Enferno in 7 min: https://medium.com/project-enferno/create-a-comic-website-in-7-min-using-project-enferno-6c838c1e2742?source=1
- How to use background tasks and Mail in Enferno : https://medium.com/project-enferno/create-your-first-minion-with-project-enferno-f7884aa95443?source=1
- Deploy your Enferno project on Ubuntu in a minute: https://medium.com/project-enferno/tip-deploy-enferno-framework-on-ubuntu-with-a-single-command-cc1a596ec3f7
- How to deploy Enferno on Heroku: https://medium.com/project-enferno/deploy-your-enferno-website-on-heroku-for-free-810326f0aaa
- YOOO: a url shortener built with Enferno: https://medium.com/project-enferno/introducing-yooo-a-url-shortener-api-based-on-enferno-framework-823bdc2afa05?source=1
- MongoDB
- Redis
- Python Imaging (jpeg/png) support if you would like to work with images
- Node.js and npm (for front-end stuff)
$ git clone git@github.com:level09/enferno.git $ cd enferno $ virtualenv env $ source env/bin/activate $ pip install -r requirements.txt $ npm install
After that, you should create your admin user, run the following command:
$ export FLASK_APP=enferno.py $ flask install
and follow the instructions, this will create your first user and first admin role.
Edit the settings.py and change the settings to suit your needs, sepcifically you can change Flask security settings, security keys, Mongodb settings,and Flask mail.
to run the system, you can use a management command:
$ flask run and $ gulp
- Flask based
- Fully working user registration and authentication + user roles via Flask security
- Memory caching via Redis and Flask cache
- Command line scripting via Flask click
- Automatic assets bundling, minification and sass support via gulp
- Mongodb and Mongoengine ORM
- Background tasks via Celery
- Email integration via Flask Mail
- Best practices by utilizing Flask blueprints and development/production configuration
Some of the websites running on Enferno:
- Cookiecutter Flask
- Flask Security
- Mongoengine
- Flask WTF
- Flask Admin
- Celery Task Queue
- Redis
- Flask Mail
- Flask Documentation
- Celery Task Queue
MIT licensed.