https://github.com/danirus/django-sample-project
Django's tutorial sample site with unittests
https://github.com/danirus/django-sample-project
Last synced: 4 months ago
JSON representation
Django's tutorial sample site with unittests
- Host: GitHub
- URL: https://github.com/danirus/django-sample-project
- Owner: danirus
- Created: 2013-04-02T12:14:18.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-27T11:17:53.000Z (about 13 years ago)
- Last Synced: 2025-10-10T11:45:06.242Z (9 months ago)
- Language: Python
- Homepage:
- Size: 285 KB
- Stars: 8
- Watchers: 2
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
django-sample-project
=====================
This is an implementation of the official Django tutorial with a couple of test cases and an extra third-party app: [django-sample-app](https://github.com/danirus/django-sample-app). Both are part of the example of Continuous Integration of webapps with Buildbot: [buildbot-sample-conf](https://github.com/danirus/buildbot-sample-conf).
python manage.py syncdb --noinput
coverage run manage.py test --settings mysite.test_settings # to test polls app and produce coverage data
coverage html -include=polls/* --omit=polls/tests/* # visit html output at htmlcov/index.html
python manage.py runserver # (user: admin, passwd: admin)