There are two ways to install and run the app:
- Cloning the repository and running the Docker container.
- Cloning the repository and running the app manually.
Make sure you have Git installed on your machine.
git clone https://github.com/maikkundev/soft-tech-project-2024.git
Docker is the easiest way to run the app. Make sure you have Docker installed on your machine.
docker compose up
Please make sure that port 8501
is not being used by some other process.
Create a Python virtual enviroment (venv) and activate said enviroment:
python -m venv ./.venv
# Linux/Unix:
$ source <PROJECT_PATH>/.venv/bin/activate
# Windows:
PS <PROJECT_PATH>\.venv\Scripts\Activate.ps1
Install the necessary Python libraries that are included in the requirements.txt
file using your preferred package manager:
pip3 install -r requirements.txt
Run app via the streamlit
command:
streamlit run ./web/Info.py