Skip to content

Instantly share code, notes, and snippets.

View carc1n0gen's full-sized avatar

Carson Evans carc1n0gen

View GitHub Profile
### Keybase proof
I hereby claim:
* I am carc1n0gen on github.
* I am carsonthecanuck (https://keybase.io/carsonthecanuck) on keybase.
* I have a public key ASAOtLzpKuIVdO0kPyJwMP133KCZlYH1-4xLbX_ViL0F2go
To claim this, I am signing this object:
@carc1n0gen
carc1n0gen / Flask Makefile
Last active February 9, 2024 18:37
Makefile for a flask python web app
all: setup dev
setup:
test -d .venv || python -m venv .venv
. .venv/bin/activate; pip install -r requirements.txt
dev:
. .venv/bin/activate; flask --app app.create_app run --debug