Sfoglia il codice sorgente

added startup information https://wiki.siningsoft.de/doku.php?id=mycar:software:manualusage


git-svn-id: svn://svn.siningsoft.de/myCar@16 4258477e-9397-4ceb-bd8a-6305f6291781
devnull 6 anni fa
parent
commit
5525e9da6f
2 ha cambiato i file con 14 aggiunte e 0 eliminazioni
  1. 7 0
      bin/start-debug.sh
  2. 7 0
      bin/start.sh

+ 7 - 0
bin/start-debug.sh

@@ -0,0 +1,7 @@
+#!/bin/bash
+
+export FLASK_APP=myCar.py
+export FLASK_ENV=development
+flask run
+
+exit 0

+ 7 - 0
bin/start.sh

@@ -0,0 +1,7 @@
+#!/bin/bash
+
+export FLASK_APP=myCar.py
+export FLASK_ENV=development
+flask run
+
+exit 0