Commit 1fe96a6c3a666aab0b3eaf61bd3a6f061dc23d61

Authored by Antoine Goutenoir
1 parent c70ccfb2
Exists in master

Add home-brewed local dev script.

Showing 1 changed file with 10 additions and 0 deletions   Show diff stats
bin/dev.sh 0 → 100755
... ... @@ -0,0 +1,10 @@
  1 +#!/usr/bin/env bash
  2 +
  3 +
  4 +
  5 +source venv/bin/activate
  6 +export FLASK_APP=flaskr
  7 +export FLASK_ENV=development
  8 +export FLASK_RUN_EXTRA_FILES="content.yml"
  9 +
  10 +flask run
0 11 \ No newline at end of file
... ...