- Create your virtualenv.
# With pew
pew new --python=python3 smiles
# New virtualenv will automatically be activated
- Install Django and create the project.
pip install django
django-admin startproject --template=https://github.com/sloria/smiles/archive/template.zip smiles
cd smiles
- Install requirements
pip install -r requirements.txt
- Copy the local environment config file.
cp .env.example .env
- Run the server
python manage.py runserver
- Browse to http://localhost:8000/ to see your app.
Pre-requisites:
- You have a Heroku account
- git is installed
- The Heroku CLI is installed
heroku create
git push heroku master
A small Django app used to teach the following concepts:
- Object-oriented programming
- Client-server communication
- What a web framework is/does
- Using 3rd-party Python packages
- Testing
This is used for Girl Develop It Central Virginia's Intermediate Python class.
The accompanying slides for the class are here.
This app is used for teaching very specific concepts and is not necessarily meant to demonstrate best practices. Furthermore, it deliberately omits a few things:
- Does NOT teach databases or ORMs
- Does NOT go in-depth into Django's APIs
- Does NOT assume knowledge of HTML/CSS/JS (template files are provided)
- Does NOT teach JSON APIs
- Does NOT teach frontend frameworks