add basic web page server

This commit is contained in:
2022-06-02 11:50:29 -05:00
parent 60c212a803
commit 7239eba8dc
5 changed files with 409 additions and 3 deletions

3
serve.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
poetry run gunicorn -b "127.0.0.1:8050" "wordlinator.web:server"