Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thibaudcolas/my-first-blog-2018
- Owner: thibaudcolas
- License: mit
- Created: 2017-11-05T12:17:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-07T22:06:54.000Z (over 6 years ago)
- Last Synced: 2024-10-09T11:22:18.626Z (about 1 month ago)
- Topics: django, django-girls, django-girls-tutorial, wagtail
- Language: Python
- Homepage: https://thibaudcolas.pythonanywhere.com/
- Size: 13.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.0To 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
```