Compare commits

...

3 commits

Author SHA256 Message Date
52683f0d88 add sample visitorcount file 2025-02-24 19:41:09 -06:00
7bf20cff3b add hosting 2025-02-24 19:40:41 -06:00
05ae5e67ea credits 2025-02-24 19:16:40 -06:00
4 changed files with 23 additions and 1 deletions

10
app.sh Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env sh
set -eu
main() {
cd site
waitress-serve 'app.app' --port=8041 &
}
main "$@"

View file

@ -94,4 +94,4 @@ def todo():
return render_template('todo.html')
if __name__ == '__main__':
app.run(host="0.0.0.0", port=8080)
app.run(app=app, server="flask", host="0.0.0.0", port=8080)

View file

@ -114,4 +114,15 @@
<img src="/static/{{ image }}" alt="{{ image }}" width="88" height="31">
</a>
{% endfor %}
</p>
<h2>
credits
</h2>
<p>
<ul>
<li>
<a href="https://www.vantajs.com/">Vanta.js</a> - background effect
</li>
</ul>
</p>
</body>

View file

@ -0,0 +1 @@
0