summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD Delmar Davis <don@suspectdevices.com>2025-01-11 16:10:54 -0800
committerD Delmar Davis <don@suspectdevices.com>2025-01-11 16:10:54 -0800
commit936a006e5616b82b56fd9520d5b4fad3dec96be4 (patch)
treea4819f67bb4cea992187e00d93a346e47cc98dc1
parentc0e15f3f7d8755e67d659a197a2a288f56222056 (diff)
minor stuffHEADmain
-rw-r--r--docs/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/README.md b/docs/README.md
index 07e5c46..e60672e 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -26,7 +26,7 @@ graph LR
## The source code and the results
- [https://github.com/suspect-devices/bartender](https://github.com/suspect-devices/bartender)
- The source code for the bartender service is in the same repository as the content it serves
+ The source code for the bartender service serves the it's documentation as well as several other sites.
- [https://www.digithink.com](https://www.digithink.com) is the one of the target websites.
- [https://www.3dangst.com](https://www.3dangst.com) is another one of the target website.
- [https://bartender.digithink.com/](https://bartender.digithink.com/) contains this and the other documents for the service.
@@ -128,7 +128,7 @@ app = Flask(__name__)
@app.route("/whiskey/<style>",methods = ['POST'])
def whiskey(style):
# break this out by style.
- subprocess.call(['at', 'now', '-f', '/var/www/digithink/site/makesite.sh'])
+ subprocess.call(['at', 'now', '-f', '/var/www/digithink/repo/makesite.sh'])
return f"One Whiskey, {escape(style)}!"
```