Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/capactio/capact
Simple way to manage applications and infrastructure.
https://github.com/capactio/capact
capact cloud-native go hacktoberfest kubernetes multicloud
Last synced: 2 months ago
JSON representation
Simple way to manage applications and infrastructure.
- Host: GitHub
- URL: https://github.com/capactio/capact
- Owner: capactio
- License: apache-2.0
- Created: 2020-09-30T07:11:09.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-20T08:14:51.000Z (about 2 years ago)
- Last Synced: 2024-08-04T04:06:14.522Z (6 months ago)
- Topics: capact, cloud-native, go, hacktoberfest, kubernetes, multicloud
- Language: Go
- Homepage: https://capact.io
- Size: 10.1 MB
- Stars: 80
- Watchers: 7
- Forks: 19
- Open Issues: 70
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
- awesome-cloud-native - capact - A framework to manage applications and infrastructure in a unified way. (Application Delivery)
README
# Capact
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![GitHub Actions main branch CI](https://github.com/capactio/capact/actions/workflows/branch-build.yaml/badge.svg?branch=main)](https://github.com/capactio/capact/actions/workflows/branch-build.yaml?query=branch%3Amain)
[![Go Report Card](https://goreportcard.com/badge/github.com/capactio/capact)](https://goreportcard.com/report/github.com/capactio/capact)**Capact** (pronounced: "cape-act", /ˈkeɪp.ækt/) is a simple way to manage applications and infrastructure.
## Documentation
The Capact documentation can be found on the [capact.io](https://capact.io) website.
The documentation sources reside on the [`website`](https://github.com/capactio/website) repository under [`docs`](https://github.com/capactio/website/tree/main/docs) directory.
## Get started
The section contains useful links for getting started with Capact.
- **Introduction:** To learn what is Capact, read the [Introduction](https://capact.io/docs/introduction) document.
- **Installation:** To learn how to install Capact, follow the [Installation](https://capact.io/docs/installation/local) documents.
- **Contribution:** To start contributing to Capact, read the [Community](https://capact.io/community/contributing) documents.
- **Support:** If you need any help, or you have a question for us, join our [Slack channel](https://capact.io/community/slack) and post a message. We'll do our best to get you sorted!## Project structure
The repository has the following structure:
```
.
├── cmd # Main application directory
│
├── deploy # Deployment configurations and templates
│
├── docs # Documents that are not published on the Capact website, such as proposals and investigations
│
├── hack # Scripts used by the Capact developers
│
├── internal # Private component code
│
├── ocf-spec # Open Capability Format Specification
│
├── hub-js # Node.js implementation of Capact Hub
│
├── pkg # Public component and SDK code
│
├── test # Cross-functional test suites
│
├── Dockerfile # Dockerfile template to build applications and tests images
│
└── go.mod # Manages Go dependency. There is single dependency management across all components in this monorepo
```