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 :
- 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:
$ ./manage.py 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:
$ ./manage.py server and $ gulp
- Flask based
- Fully working user registration and authentication + user roles via Flask security and Flask Principal
- Memory caching via Redis and Flask cache
- Simple admin backend via Flask Admin
- Command line scripting via Flask Script (will be replaced by "click" in the next release)
- Automatic assets bundling and minification via Flask assets
- 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.