To run the application on your local machine, follow these steps:
-
Navigate to the project directory:
git clone https://github.com/annumberhocker/logging_utility.git cd logging_utility
-
Create a Python Enviroment, Activate it, and Install Requirements:
python -m venv assetEnv source assetEnv/bin/activate python -m pip install -r requirements.txt
-
Start the project:
python app.py
-
URL access:
The url, for purposes of using cURL is http://0.0.0.0:8000.
To access Swagger go to http://0.0.0.0:8000/docs
To deploy in a container using podman:
podman build -t logging-utility .
podman run --rm -p 8000:8000 logging-utility