Skip to content

Instantly share code, notes, and snippets.

View jsaxon-cars's full-sized avatar

James Bennett Saxon jsaxon-cars

View GitHub Profile
@jsaxon-cars
jsaxon-cars / poetry_install_surprise_stdout.txt
Created October 29, 2021 19:21
Poetry not doing exactly what I was expecting
$ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
Retrieving Poetry metadata
# Welcome to Poetry!
This will download and install the latest version of Poetry,
a dependency and package manager for Python.
It will add the `poetry` command to Poetry's bin directory, located at:
@jsaxon-cars
jsaxon-cars / bootstrap.sh
Created February 4, 2012 09:21 — forked from utsengar/bootstrap.sh
Django on Heroku with Postgres, Celery and Sentry
virtualenv --no-site-packages .
source bin/activate
bin/pip install Django psycopg2 django-sentry
bin/pip freeze > requirements.txt
bin/django-admin.py startproject mysite
cat >.gitignore <<EOF
bin/
include/
lib/
EOF