Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 642 Bytes

README.md

File metadata and controls

44 lines (31 loc) · 642 Bytes

Tango with Django: Hentes - A Django Project

Basic Commands

  1. Vritual Environments
  • Set up a virtual environment
python -m venv env
  • Activate the virtual environment
source env/bin/activate
  1. Django Setup
  • Install Django
python -m pip install django
  • Pin your dependencies
python -m pip freeze > requirements.txt
  1. Set up a Django project
django-admin startproject <projectname>
  1. Start a Django app
python manage.py startapp <appname>

Resources