mkvirtualenv --python=/usr/bin/python3 missingkids
pip install -r requirements.txt
heroku config | tail -n +2 | perl -pe 's/(\w*):\s*(\S*)/$1=$2/g' >> .env
export $(cat .env | xargs) && python manage.py
find . -name '*.pyc' -delete
isort --skip node_modules --skip docs --skip migrations --skip venv --skip settings
grep -rnw . -e "pattern"
grep -rnw . -e "pattern" --include=\*.{py, html, js} --exclude-dir={docs,node_modules}
grep -rnw . -e "pattern" --include=\*.{c,h} --exclude-dir={dir1,dir2,*.dst}