We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a82fb8f commit 7f917afCopy full SHA for 7f917af
README.md
@@ -30,6 +30,11 @@ This repository contains source code for Coder V2. Additional documentation:
30
31
The `develop.sh` script runs the server locally on port `3000`, and runs a hot-reload server for front-end code on `8080`.
32
33
+### CLI
34
+
35
+- `./install.sh` will `go install` the `coder` CLI
36
+- `coder --help`
37
38
## Front-End Plan
39
40
For the front-end team, we're planning on 2 phases to the 'v2' work:
install.sh
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env bash
2
3
+set -euo pipefail
4
5
+go install cmd/coder/main.go
6
+echo "Coder CLI now installed at:"
7
+echo "$(which coder)"
0 commit comments