https://github.com/redpanda-data/redpanda-addr2line
https://github.com/redpanda-data/redpanda-addr2line
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/redpanda-data/redpanda-addr2line
- Owner: redpanda-data
- Created: 2022-02-25T20:19:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-05T02:22:57.000Z (over 1 year ago)
- Last Synced: 2025-09-17T12:21:17.856Z (9 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 39
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Run locally
If you have `docker-compose` installed then you can run the application locally
using the provided script (add `--docker` if not using `podman`). The
`CLOUDSMITH_API_KEY` is used to discover and access published releases, and can
be found on our cloudsmith dashboard:
```
CLOUDSMITH_API_KEY=YOUR_KEY ./run-local.sh
```
once the application is running it can be accessed using a browser:
* https://localhost:8000/docs
* Username: admin
* Password: admin
## Production deployment
Configure with the following environment variables:
```
DOMAIN=
USERNAME=
PASSWORD='$2a$14$5xcXSjDxrwqSzh685qOZO.ltM.jpA90kNlpT9TfIZV4LLcvYPh3Si'
```
The standard 80/443 ports are used for http/https. The Caddy reverse proxy with
automatically set up SSL for the configured domain.
To configure the password compute the hash of the plaintext representation:
```
echo secret | docker run -i caddy:2.6.4-alpine caddy hash-password
```
Then set the output to the `PASSWORD` environment variable. Be sure to escape
the `$` in the hash or use single quotes.