No description
  • Go 70.1%
  • JavaScript 18.7%
  • MDX 7.1%
  • TypeScript 2.3%
  • HCL 0.7%
  • Other 0.9%
Find a file
2023-11-28 09:29:35 -08:00
.changelog Fix syntax error in ECS policy doc 2023-08-08 11:12:59 -04:00
.github update linux package license to BUSL-1.1 2023-08-14 11:22:27 +01:00
.release add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
.vscode
builtin add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
ci Convert hashicorp/waypoint to GitHub Actions (#4617) 2023-04-25 09:11:07 -05:00
cmd add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
contrib add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
docs/gen docs: Fix user-facing documentation typos 2023-05-09 16:23:57 -04:00
embedJson add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
hack
internal Merge pull request #4879 from hashicorp/i-update-add-ons 2023-08-24 10:08:50 -04:00
nix Remove custom go-tools 2023-02-21 19:27:48 +00:00
pkg Merge pull request #4879 from hashicorp/i-update-add-ons 2023-08-24 10:08:50 -04:00
scripts add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
telemetry add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
test-e2e Convert hashicorp/waypoint to GitHub Actions (#4617) 2023-04-25 09:11:07 -05:00
thirdparty/proto Finish upgrading to google.golang.org/protobuf 2022-03-21 13:16:32 -07:00
tools add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
ui add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
version Add version/VERSION file for VBA 2023-04-13 14:14:53 -07:00
website Added title and description for tutorials index page. 2023-10-11 12:07:10 -04:00
x add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
.copywrite.hcl add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
.dockerignore
.envrc
.gitattributes
.gitignore gitignore: Ignore any vscode log files from being committed 2022-08-02 07:58:15 -07:00
.gitmodules
.go-version Migrate Waypoint to CRT 2023-04-13 14:14:49 -07:00
ARCHITECTURE.md docs: Fix user-facing documentation typos 2023-05-09 16:23:57 -04:00
CHANGELOG.md update product name 2023-10-11 10:31:49 -05:00
CRT.Dockerfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
docker-compose.yml add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
Dockerfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00
flake.lock Update flakes to pull in go 1.18 2023-02-21 19:26:36 +00:00
flake.nix Update flakes to pull in go 1.18 2023-02-21 19:26:36 +00:00
go.mod chore(deps): bump google.golang.org/grpc/cmd/protoc-gen-go-grpc 2023-06-12 18:47:07 +00:00
go.sum chore(deps): bump google.golang.org/grpc/cmd/protoc-gen-go-grpc 2023-06-12 18:47:07 +00:00
LICENSE Update LICENSE 2023-11-27 16:24:25 -08:00
Makefile Makefile: set CGO 2023-05-03 12:39:20 -07:00
README.md update product name 2023-10-11 10:31:49 -05:00
shell.nix
tools.Dockerfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 22:01:19 +01:00

Image


HashiCorp Waypoint Community Edition is no longer actively maintained. For additional information on the new vision of Waypoint, check out this blog post and the HCP Waypoint documentation.


Waypoint

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:

  • Cloud Native Buildpacks
  • Docker
  • Kubernetes
  • AWS EC2 and ECS
  • Azure Container Instances
  • Google Cloud Run
  • And many more...

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 security@hashicorp.com.

Quick Start

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.

Documentation

Full, comprehensive documentation is available on HashiCorp Developer:

https://developer.hashicorp.com/waypoint/docs

Contributing

Thank you for your interest in contributing! Please refer to CONTRIBUTING.md for guidance.

Installing Dependencies

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.

Running the unit tests

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

Running individual tests

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