| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Cody App is a single-binary distribution of Sourcegraph that runs on your local machine.
Status: alpha (only for internal use at Sourcegraph)
sg start app(Or sg start single-program if you want all of Sourcegraph, not just Cody functionality.)
If your are running app on a fresh database instance you also have to perform the following steps:
Cody App is in alpha (only for internal use at Sourcegraph).
Check the Cody App release bot in #app (in the Sourcegraph internal Slack) for the latest release information.
To build it locally for all platforms (without releasing, uploading, or publishing it anywhere), run:
VERSION=0.0.0+dev dev/app/release.sh --snapshotThe builds are written to the dist directory.
If you just need a local build for your current platform, run sg start app (as mentioned in the Development section) and then grab the .bin/sourcegraph binary. This binary does not have the web bundle (JavaScript/CSS) embedded into it.
Our CI pipeline runs the ../../dev/app/release.sh script, which uses goreleaser to build for many platforms, package, and publish to the sourcegraph-app-releases Google Cloud Storage bucket.
Insiders builds may be created from non-main branches; they are much more experimental. To create one push your current branch to the special app/insiders branch:
git push -f origin HEAD:app/insidersCheck the build status in Buildkite app/insiders branch builds.
Official releases may only be created from main (or sometimes main-app during a code freeze); to create one push the latest remote branch to the special app/release branch:
git fetch
git push -f origin origin/main:app/releaseCheck the build status in Buildkite app/release branch builds.
| Back | FazBrowse Home | New Git URL |