Skip to content

Instantly share code, notes, and snippets.

View asnair's full-sized avatar

Austin asnair

View GitHub Profile
@asnair
asnair / Makefile
Created September 18, 2017 14:22 — forked from jbgo/Makefile
My vagrant setup for python flask apps
SHELL = /bin/bash
WORKDIR = /vagrant
PSQL = sudo -u postgres psql
DBNAME = changeme
DBUSER = changeme_user
DBPASS = secret
db/console:
$(PSQL) $(DBNAME)