Django-Sigma is a pre-configured Django project with Sigma JS 1.2.0 installed.
- Download zip archive and unzip it.
- Create a virtualenv in the django-sigma-master folder as follow :
cd django-sigma
python3 -m venv env
- Activate virtualenv :
source env/bin/activate
- Install dependencies :
pip install -r requirements.txt
- Change directory to reach Django project root dir :
cd django_sigma
- Run Django migrations (if you don't modifiy 'settings.py', it will create a sqlite db) :
./manage.py migrate
- Created a 'media' directory where you can put your data files (csv, xls, ods) (note : MEDIA_ROOT settings point to this folder)
mkdir media
- Run dev web server :
./manage.py runserver