-
Clone the Repository:
git clone https://github.com/faialotaibi/github-actions-app.git
-
Navigate to the Project Directory:
cd github-actions-app -
Set Up a Virtual Environment:
python -m venv venv source venv/bin/activate # macOS/Linux venv\Scripts\activate # Windows
-
Install Required Packages:
pip install -r requirements.txt
-
Run the Application:
flask run
-
Access the App:
http://localhost:5000 -
Run tests:
pytest
- Build image
docker build -t your-image-name .
docker run -p 5000:5000 your-image-name