1
0

3 Commitit acb849f6d3 ... 9dc5a8e984

Tekijä SHA1 Viesti Päivämäärä
  allens 9dc5a8e984 Added opaque background for OBS 3 viikkoa sitten
  allens aa7389a798 Changed path to new folder name 3 viikkoa sitten
  allens d40d19776d Updated description, install, and run information 3 viikkoa sitten
3 muutettua tiedostoa jossa 14 lisäystä ja 3 poistoa
  1. BIN
      ListBackground.png
  2. 13 2
      README.md
  3. 1 1
      wsgi.py

BIN
ListBackground.png


+ 13 - 2
README.md

@@ -1,7 +1,18 @@
 # Checklist
-
 A web based app to add and check items off a list, which outputs a page that can be set up as a browser source in OBS.
+I've included "ListBackground.png" as an opaque background for your list, in OBS, but use whatever you'd like.
+
+## Setup
+Create your venv, we'll call it ".venv", and activate it.
+
+``` pip install --upgrade pip
+    pip install .
+```
+
 
 ## Run with:
  
-```.venv/bin/python -m gunicorn -b 0.0.0.0:8043 -w 1 'app:app'
+```.venv/bin/python -m gunicorn -b 0.0.0.0:<port number> -w 1 'app:app'
+```
+
+Of course, is you prefer to run you flask apps with something else, go for it.

+ 1 - 1
wsgi.py

@@ -3,7 +3,7 @@ import os
 import logging
 
 current_dir = os.path.dirname(os.path.abspath(__file__))
-pathtoapp = os.path.join(current_dir, 'checklist')  # Adjust this if your app is in a different folder
+pathtoapp = os.path.join(current_dir, 'Checklist')  # Adjust this if your app is in a different folder
 sys.path.insert(0, pathtoapp)
 
 from app import app as application