Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
<p align="center">
|
|
<a href="https://sentry.io/?utm_source=github&utm_medium=logo" target="_blank">
|
|
<picture>
|
|
<source srcset="https://sentry-brand.storage.googleapis.com/sentry-logo-white.png" media="(prefers-color-scheme: dark)" />
|
|
<source srcset="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" />
|
|
<img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" alt="Sentry" width="280">
|
|
</picture>
|
|
</a>
|
|
</p>
|
|
|
|
# Sentry CLI
|
|
|
|
This is the repository for Sentry CLI, the official command line interface for Sentry.
|
|
|
|
Sentry CLI can be used for many tasks, including uploading debug symbols and source maps to Sentry, managing releases, and viewing Sentry data such as issues and logs.
|
|
|
|
## Installation and Usage
|
|
|
|
Please refer to [Sentry CLI's documentation page](https://docs.sentry.io/cli/).
|
|
|
|
## Compiling
|
|
|
|
In case you want to compile this yourself, you need to install at minimum the
|
|
following dependencies:
|
|
|
|
* Rust stable and Cargo
|
|
* Make, CMake and a C compiler
|
|
|
|
Use cargo to compile:
|
|
|
|
$ cargo build
|
|
|
|
Also, there is a Dockerfile that builds an Alpine-based Docker image with
|
|
`sentry-cli` in the PATH. To build and use it, run:
|
|
|
|
```sh
|
|
docker build -t sentry-cli .
|
|
docker run --rm -v $(pwd):/work sentry-cli --help
|
|
```
|