Skip to content
This repository was archived by the owner on Jan 15, 2020. It is now read-only.

Latest commit

 

History

History
26 lines (21 loc) · 883 Bytes

File metadata and controls

26 lines (21 loc) · 883 Bytes

How to Contribute

Welcome! And thank you for wanting to make our site better. Open discussion for site improvements can be found here.

Here is some information that can help you get started:

Dependencies

  • Python 3
  • Django >= 1.8
  • django_markdown package (pip install django_markdown)

Handy Django Commands

  • Create a new app: python manage.py startapp <appname>
  • Tell Django about model changes: python manage.py makemigrations <appname>
  • Check migration SQL: python manage.py sqlmigrate <appname> <migration number>
  • Check for project errors: python manage.py check
  • Apply migrations: python manage.py migrate
  • Open django shell: python manage.py shell
  • Run app tests: python manage.py test <appname>
  • Populate database: python manage.py populate