Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 792 Bytes

installation.md

File metadata and controls

48 lines (35 loc) · 792 Bytes

ZenDeploy Installation Guide

Prerequisites

Before installing ZenDeploy, ensure you have the following:

  • Python 3.8 or higher
  • Git
  • AWS CLI configured with profiles
  • SSH access to your Git repositories

Installation Steps

  1. Clone the Repository
git clone <repository_url>
cd zendeploy
  1. Create Virtual Environment
python3 -m venv .venv
source .venv/bin/activate  # On Linux/macOS
.venv\Scripts\activate     # On Windows
  1. Install Dependencies
pip install -r requirements.txt

Verifying Installation

To verify your installation:

  1. Run the test environment setup:
python3 tests/setup_test_env.py
  1. Start the application:
python3 src/main.py

Troubleshooting

[Troubleshooting documentation to be added]