The first thing to do is to clone the repository:
$ git clone https://github.com/paulo4ndre/ias.git
$ cd iasCreate a virtual environment to install dependencies in and activate it:
$ pip install virtualenvOn Windows:
$ virtualenv venv
$ cd venv/scripts
$ activateOn Linux:
$ virtualenv venv
$ source venv/bin/activateThen install the dependencies (in the project root folder):
(venv)$ pip install -r requirements-dev.txtInstall database dependencies:
(venv)$ python manage.py migrateLoad table presets (Fixtures)
(venv)$ python manage.py loaddata loadfixturesCreate admin user:
(venv)$ python manage.py createsuperuserRun project:
(venv)$ python manage.py runserverType in your browser http://localhost:8000/