Skip to content

Develop

Akira Kamiya edited this page Mar 28, 2019 · 2 revisions

How to set up the development environment

To work on this app locally, please follow the instructions below.

Build the app

git clone https://github.com/srmtlab/IBIS_creator.git
cd IBIS_creator
pip install -r requirements/local.txt
python3 SetUp.py

Open local_settings.json and add localhost and 127.0.0.1 in "ALLOWED_HOSTS"

migrate database

python3 manage.py migrate --settings config.settings.local
python3 manage.py makemigrations IBIS_creator --settings config.settings.local
python3 manage.py migrate --settings config.settings.local

run the app

python3 manage.py runserver --settings config.settings.local

Clone this wiki locally