Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 437 Bytes

File metadata and controls

30 lines (22 loc) · 437 Bytes

python-web-app

Python app for CI CD

Clone the repo

git clone https://github.com/singh-ashok25/python-web-app.git
cd python-web-app

Setup virtual env and install requirements

sudo yum -y install python3
pip3 install --upgrade pip
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt

python3 src/app.py 
curl http://127.0.0.1:5000/ 
export PYTHONPATH=src
pytest