Here is hosted the source code of the new refactored tunely web-app.
git clone https://github.com/DTailor/tunely.git
virtualenv tunely_env
source tunely_env/bin/activate
pip install -r requirements.txt
cp tunely/sample_local_settings.py tunely/local_settings.py
- fill the data in
local_settings.py
file chmod +x manage.py
- run
./manage.py syncdb
- run
./migrate tune_gazer
- Add a sample station
./manage.py runserver
- access localhost:8000
P.S. You can create a local_settings.py file and activate debug mode by overriding the original settings.
mkdir tune_gazer/fixtures
python manage.py dumpdata tune_gazer > tune_gazer/fixtures/test_fixture.json
python manage.py test tune_gazer