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
- Clone the Repository
git clone <repository_url>
cd zendeploy
- Create Virtual Environment
python3 -m venv .venv
source .venv/bin/activate # On Linux/macOS
.venv\Scripts\activate # On Windows
- Install Dependencies
pip install -r requirements.txt
To verify your installation:
- Run the test environment setup:
python3 tests/setup_test_env.py
- Start the application:
python3 src/main.py
[Troubleshooting documentation to be added]