Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Minio | 39,223 | 20 | 111 | 18 hours ago | 375 | April 25, 2021 | 46 | agpl-3.0 | Go | |
High Performance Object Storage for AI | ||||||||||
Cockroach | 27,216 | 50 | 22 | 16 hours ago | 248 | August 06, 2021 | 6,644 | other | Go | |
CockroachDB - the open source, cloud-native distributed SQL database. | ||||||||||
Mattermost Server | 25,510 | 99 | 2 days ago | 1,093 | August 31, 2022 | 842 | other | TypeScript | ||
Mattermost is an open source platform for secure collaboration across the entire software development lifecycle. | ||||||||||
Webiny Js | 6,579 | 113 | 17 hours ago | 251 | September 07, 2022 | 251 | other | TypeScript | ||
Open-source serverless enterprise CMS. Includes a headless CMS, page builder, form builder, and file manager. Easy to customize and expand. Deploys to AWS. | ||||||||||
Openwhisk | 6,067 | 2 days ago | 378 | apache-2.0 | Scala | |||||
Apache OpenWhisk is an open source serverless cloud platform | ||||||||||
Waypoint | 4,743 | 1 | a day ago | 84 | September 22, 2022 | 342 | mpl-2.0 | Go | ||
A tool to build, deploy, and release any application on any platform. | ||||||||||
Orchest | 3,867 | 4 days ago | 14 | April 06, 2022 | 126 | agpl-3.0 | TypeScript | |||
Build data pipelines, the easy way 🛠️ | ||||||||||
Faasd | 2,516 | 10 days ago | 21 | April 12, 2021 | 32 | mit | Go | |||
A lightweight & portable faas engine | ||||||||||
Engine | 2,002 | a day ago | 7 | gpl-3.0 | Rust | |||||
The Orchestration Engine To Deliver Self-Service Infrastructure Faster ⚡️ | ||||||||||
Cloud Run Faq | 1,989 | a year ago | 11 | cc-by-4.0 | Shell | |||||
Unofficial FAQ and everything you've been wondering about Google Cloud Run. |
Waypoint allows developers to define their application build, deploy, and release lifecycle as code, reducing the time to deliver deployments through a consistent and repeatable workflow.
Waypoint supports a number of build methods and target platforms out of the box and more can be easily added via plugins:
Waypoint runs on Linux, Mac OS X, and Windows.
Please note: We take Waypoint's security and our users' trust very seriously. If you believe you have found a security issue in Waypoint, please responsibly disclose by contacting us at [email protected].
A quick start guide is available on HashiCorp Developer. You can also find tutorials which cover topics ranging from getting started guides to more advanced usage.
Full, comprehensive documentation is available on HashiCorp Developer:
https://developer.hashicorp.com/waypoint/docs
Thank you for your interest in contributing! Please refer to CONTRIBUTING.md for guidance.
This repository contains a couple of different ways to automate installing the
required Golang packages needed to build Waypoint locally. You can either use
NixOS, or run make tools
to setup the
required packages.
To run the entire test suite, you'll want to ensure that you've brought up
all the required containers used for testing. You can do this by leveraging
the existing docker-compose.yml
file that's in the root directory of this
project:
$ docker-compose up
After running this, you should have a local Horizon container along with a few other services needed for running the tests:
$ make test
If you don't want to run the entire test suite, you can just run a singe test with go. For example, if you wanted to run the tests ListInstances, you would run:
$ go test -run ListInstances -v ./internal/server/singleprocess