A dashboard for cams showing up, stale, or delayed.
- Docker Desktop to build and run the code locally
- Git (to provide git bash for the run command that mounts the local directory)
- Clone the repository
- Change directory into the cloned repository
- Install the Required libraries: 'pip install -r requirements.txt'
- Run the application (option 1): streamlit run Main.py
- Run the application (option 2): python -m streamlit run Main.py
- Clone the repository
- Build the image:
docker build -t cams .
- Run the image:
docker run -dp 8501:8501 cams
Be default, the docker build process clones the repo into the image. To run the image so that local changes are reflected after refreshing the page, use this command instead to mount the local directory over the repo in the image:
docker run -dp 8501:8501 --mount type=bind,src="$(pwd)",target=/app cams
The site should be available at http://localhost:8051/.