MOONWALKING WITH PROJECT ENFERNO
This is a series of articles that will teach you how to build modern web systems using the Enferno framework
*Edit: This article is outdated, please visit https://www.enferno.io/blog/ for most recent docs.
Part 1 — Create your first website
Prerequisites
This articles assumes you already have Python, Mongodb, and Redis installed on your system.
Installing Enferno
Start by cloning the repository
git clone git@github.com:level09/enferno.git
Get inside the directory
cd enferno
Create a virtual environment
virtualenv env
Activate the environement
source env/bin/activate
Install the required python libraries
pip install -r requirements.txt
Export Flask App
export FLASK_APP=run.py
Run the system
flask run
You should get the following message
* Serving Flask app "run"
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
All you need now is to visit that URL in your browser, and you will see this
Congratulations ! your first website is up and running.