Last active
August 29, 2015 14:26
-
-
Save ellipsonic/e6c5919610a0e8fd6f19 to your computer and use it in GitHub Desktop.
Wagtail
This file contains hidden or 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
# Update core | |
sudo apt-get update | |
# Install dependencies | |
sudo apt-get install python-pip python-dev build-essential | |
# Install Wagtail | |
pip install wagtail | |
# Start your site | |
wagtail start mysite | |
# Set up the database | |
cd mysite | |
python manage.py migrate | |
# Manual intervention needed, answer to questions and create user ubuntu, password admin, email can be left blank | |
python manage.py createsuperuser | |
# Run the site in the background "done by adding & symbol at the end of the statement" | |
sudo python manage.py runserver 0.0.0.0:80 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment