{% extends 'aurora/layout.html' %} {% block title %}Index Page{% endblock %} {% block body %}
Aurora is an MVC web framework for creating CRUD applications quickly and simply.
It based on REST architecture. In another word it is a RESTFUL web framework.
Aurora is written in Python, and built on Flask.
Current Version: {{ version }} beta
You can install Aurora by running:
$ pip install aurora-mvc
To get started with Aurora simply do the following steps:
1- Create the project (root app) directory:
$ mkdir my_app
my_app
is a variable name. Change it to anything of your choice at any time you want.
2- Install a python virtual environment in the same path that the project directory exists:
$ python -m venv venv
3- Activate the virtual environment:
Linux / Mac:$ . venv/bin/activate
$ venv\scripts\activate
4- Navigate to the project directory:
(venv) cd my_app
5- Initialize the root app with Aurora via python shell:
(venv) python
>>> from aurora import init_app
>>> init_app.start()
6- To start the root app run the following command:
(venv) python app.py
Documentation: Aurora Docs
Changelog: Aurora Changes
Issues: Aurora Bug Tracker
Source: Aurora GitHub Repo
PyPI: Aurora PyPI Page