Skip to content
Claudia Müller-Birn edited this page Jul 6, 2017 · 12 revisions

Script for running neonion

If you ever need a script to run neonion, here it is:

#!/bin/bash
# Running neonion is fun

sudo /etc/init.d/elasticsearch start
sudo /etc/init.d/tomcat7 start

killall python
source venv2.7/bin/activate

cd annotator-store
python run.py &
cd ../neonion-internal
python manage.py runserver 0.0.0.0:8000

The script should be placed be in the parent folder of neonion-internal!

Clone this wiki locally