Skip to content

Instantly share code, notes, and snippets.

View jcouturier's full-sized avatar

Jeff Couturier jcouturier

View GitHub Profile
@paulera
paulera / python3_flask_dreamhost.sh
Last active June 14, 2023 17:50
Script to install python3 + virtualenv + flask, and setup passenger, for Dreamhost shared hosting.
#!/bin/bash
# ---------- SETUP --------------
SITE="unforgivenexception.com"
APP_FOLDER="app"
VIRTUALENV_FOLDER="env"
PYTHON_VERSION="3.5.6"
# ----------------------------------------------