diff options
author | pacien | 2021-07-29 18:04:48 +0200 |
---|---|---|
committer | pacien | 2021-07-29 18:04:48 +0200 |
commit | 57ff25198a82b3f6f413440e4005f0ade8dfb8d8 (patch) | |
tree | 817c43e04b3413d773a999c1950e1af43f26c3e2 /flake.nix | |
parent | f80c19c18eb01ed7e7c6f44cc25535c14659ba20 (diff) | |
download | uge_l2_rdbms_python_proto-57ff25198a82b3f6f413440e4005f0ade8dfb8d8.tar.gz |
app: render and serve proper web pages
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,7 +20,9 @@ | |||
20 | pythonWithDependencies = python.withPackages (ps: with ps; [ | 20 | pythonWithDependencies = python.withPackages (ps: with ps; [ |
21 | uvicorn # server for the web app | 21 | uvicorn # server for the web app |
22 | fastapi # simple Python framework to build web apps | 22 | fastapi # simple Python framework to build web apps |
23 | aiofiles # to let fastapi serve static resources (CSS, JS, ...) | ||
23 | python-multipart # to let fastapi handle form submissions | 24 | python-multipart # to let fastapi handle form submissions |
25 | jinja2 # HTML templating engine | ||
24 | passlib # for account password hashing | 26 | passlib # for account password hashing |
25 | psycopg2 # PostgreSQL driver for Python | 27 | psycopg2 # PostgreSQL driver for Python |
26 | embrace # bridges raw SQL queries to Python functions | 28 | embrace # bridges raw SQL queries to Python functions |