Files
web_interface_demo/README.md
2024-11-19 11:44:55 -05:00

26 lines
450 B
Markdown

First, clone this repository with
```
git clone https://winslowthehedgehog.com/git/tcc/web_interface_demo.git
```
From the WSL command line, execute the following two commands to install the libraries:
```
pip install pysondb
pip install "fastapi[standard]"
```
First, populate the demo database with:
```
python prep_database.py
```
To run this app, from wnidows command line, execute:
```
fastapi dev --host 0.0.0.0 --port 8100 main.py
```