Created
December 14, 2015 16:40
-
-
Save tomdyson/ed670f8a89a68a1a092a to your computer and use it in GitHub Desktop.
wagtaildemo-on-ubuntu-1404
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install python-pip git python-dev python-setuptools | |
sudo apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev | |
sudo apt-get install liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python-tk | |
sudo apt-get install libpq-dev python-dev | |
sudo apt-get install postgresql postgresql-contrib | |
git clone https://github.com/torchbox/wagtaildemo.git | |
cd wagtaildemo | |
sudo pip install -r requirements.txt | |
vim wagtaildemo/settings/base.py # change DATABASES to 'django.db.backends.sqlite3' | |
./manage.py migrate | |
./manage.py load_initial_data | |
./manage.py createsuperuser | |
./manage.py runserver 0.0.0.0:8000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment