Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 827 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 827 Bytes

Django Girls tutorial blog

This site is the end result of the Django Girls tutorial.

Dependencies:

  • Python 3.6
  • Django 1.11
  • Wagtail 2.0

To get this project up and running,

git clone [email protected]:thibaudcolas/my-first-blog.git
cd my-first-blog
python3.6 -m venv myvenv
source myvenv/bin/activate
pip install --upgrade pip
pip install django~=1.11.0
python manage.py migrate
python manage.py runserver

Beyond Django, Wagtail

http://docs.wagtail.io/en/v2.0.1/getting_started/integrating_into_django.html

source myvenv/bin/activate
pip install wagtail~=2.0.0
python manage.py migrate
python manage.py runserver

PythonAnywhere

cd ~/thibaudcolas.pythonanywhere.com
workon thibaudcolas.pythonanywhere.com
python manage.py collectstatic