/DjangoTemplate

Starter code for testing new Django sites

Primary LanguagePython

Django Template

What This Is

  • django startapp template with some additional changes for an easier start
  • pip3 install -r requirements.txt
  • python manage.py runserver 8000 to test
  • Add pictures and css files to /media
  • Add new webpages to /source/templates
  • Connect webpages by adding URL to /source/urls.py and corresponding functions to /source/views.py
  • If new packages are needed, add them to requirements.txt
  • python manage.py migrate
  • python manage.py makemigrations