https://github.com/zopdev/zopdev
https://github.com/zopdev/zopdev
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/zopdev/zopdev
- Owner: zopdev
- License: other
- Created: 2025-04-30T10:01:05.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2026-01-14T07:13:46.000Z (2 months ago)
- Last Synced: 2026-01-14T11:14:49.205Z (2 months ago)
- Language: Go
- Size: 864 KB
- Stars: 217
- Watchers: 4
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
ZopDev is a cloud orchestration platform that streamlines cloud management. It automates cloud infrastructure management by optimizing resource allocation, preventing downtime, streamlining deployments, and enabling seamless scaling across AWS, Azure and GCP.
## 💡 **Key Features**
1. **Cloud Agnostic**
2. **Automated Audits**
## 👍 **Contribute**
To contribute please refer to the [CONTRIBUTING.md](./CONTRIBUTING.md) file.
## Installation
### Prerequisites
- Docker installed on your system.
- Node.js version "^18.18.0 || ^19.8.0 || >= 20.0.0" is required.
- [Go](https://golang.org/) (v1.24 or later)
---
### Running Locally
#### zop-api
Run the following command to pull and start the Docker image for the zop-api:
```bash
docker run -d -p 8000:8000 --name zop-api zopdev/api:v0.4.0
```
#### zop-ui
Run the following command to pull and start the Docker image for the zop-ui:
```bash
docker run -d -p 3000:8000 -e API_BASE_URL='http://localhost:8000' --name zop-ui zopdev/dashboard:v0.4.0
```
> **Note:** The environment variable `API_BASE_URL` is used by zop-ui to connect to the
> zop-api. Ensure that the value matches the API's running base URL.