Skip to content

Instantly share code, notes, and snippets.

View rwsweeney's full-sized avatar

Rachel Sweeney rwsweeney

View GitHub Profile

Keybase proof

I hereby claim:

  • I am rwsweeney on github.
  • I am rwsweeney (https://keybase.io/rwsweeney) on keybase.
  • I have a public key ASDG267922m5blEe_zjydXvOZbFAzWG8CDboepjGyi3eLwo

To claim this, I am signing this object:

@rwsweeney
rwsweeney / django-skeleton-howto.md
Last active April 17, 2019 13:41
Pew Assessment

How to set up and test the django skeleton web app

Create a virtual environment

A python virtual environment is a way to create and isolate a python project from all other projects that may share the same space. This helps prevent any conflicts between multiple projects, and we can create the virtual environment with the following command:

python -m venv skeleton