Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thibaudcolas/my-first-blog-2018

Django Girls tutorial blog
https://github.com/thibaudcolas/my-first-blog-2018

django django-girls django-girls-tutorial wagtail

Last synced: 13 days ago
JSON representation

Django Girls tutorial blog

Awesome Lists containing this project

README

        

# Django Girls tutorial blog

> This site is the end result of the [Django Girls tutorial](https://tutorial.djangogirls.org/).

Dependencies:

* Python 3.6
* Django 1.11
* Wagtail 2.0

To get this project up and running,

```sh
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

```sh
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
```