- Notifications
You must be signed in to change notification settings - Fork0
The basic tutorial project of Django framework
andresavalerio/django-introduction
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The repository for the introductory Django project, created by theDjango community, mainteined by Andresa Valério, built with ❤️ and Python.
This source code has being the base to presentations on@pinio and Django girls.
Clone this repository
Ensure that you have django installed in your machine
python -m django --version
You can also install it in a virtual environment
python -m venv .venvsource .venv/bin/activatepip install django
Run the migrations with
python manage.py migrate
To run tests, use
python manage.py test polls
To run your project, use
python manage.py runserver
and go tohttp://localhost:8000/polls/If you want to use the admin site, run
python manage.py createsuperuser
, choose a username, email and password for your admin profile and go tohttp://localhost:8000/admin/
About
The basic tutorial project of Django framework
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.