http: Add base HTTP server implementation.

* Add HTTP server base implementation with some basic pages
* Add Jinja2 dependency
* Things are mostly working, except for static resources. Those will
  have to come next.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2023-07-31 18:04:53 -07:00
parent 5f34b353bb
commit c5e7080663
8 changed files with 562 additions and 10 deletions

View File

@@ -10,6 +10,7 @@ readme = "README.md"
python = "^3.9"
beautifulsoup4 = "^4.12.2"
aiohttp = "^3.8.4"
jinja2 = "^3.1.2"
[tool.poetry.group.dev.dependencies]