Skip to content

Commit 52a4ce7

Browse files
authored
Merge pull request #5 from tschaub/release-updates
Doc and goreleaser config update
2 parents cb4b1c0 + 3d73db3 commit 52a4ce7

File tree

3 files changed

+66
-10
lines changed

3 files changed

+66
-10
lines changed

.github/workflows/test.yml

+16
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,19 @@ jobs:
2929
with:
3030
go-version: '1.22'
3131
- run: go test -v ./...
32+
33+
release-check:
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v4
37+
with:
38+
fetch-depth: 0
39+
- run: git fetch --force --tags
40+
- uses: actions/[email protected]
41+
with:
42+
go-version: '1.22'
43+
- uses: goreleaser/goreleaser-action@v6
44+
with:
45+
distribution: goreleaser
46+
version: latest
47+
args: check

.goreleaser.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
2+
version: 2
3+
14
before:
25
hooks:
36
- go mod tidy
@@ -27,7 +30,7 @@ dockers:
2730
checksum:
2831
name_template: 'checksums.txt'
2932
snapshot:
30-
name_template: "{{ incpatch .Version }}-next"
33+
version_template: "{{ incpatch .Version }}-next"
3134
changelog:
3235
sort: asc
3336
use: github-native

readme.md

+46-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,60 @@
1-
## development notes
1+
# Stash
22

3-
Use mkcert for local certificate
3+
A proxy that caches resources for offline use.
44

55
```shell
6-
# install mkcert
6+
Usage: stash --cert-file=STRING --key-file=STRING [flags]
7+
8+
Flags:
9+
-h, --help Show context-sensitive help.
10+
--port=9999 Listen on this port ($STASH_PORT).
11+
--dir=".stash" Path to cache directory ($STASH_DIR)
12+
--hosts=HOSTS,... Cache responses from these hosts ($STASH_HOSTS)
13+
--cert-file=STRING Path to CA certificate file ($STASH_CERT_FILE)
14+
--key-file=STRING Path to CA private key file ($STASH_KEY_FILE)
15+
--[no-]cors Include CORS support (on by default).
16+
--log-level="info" Log level ($STASH_LOG_LEVEL)
17+
--log-format="text" Log format ($STASH_LOG_FORMAT)
18+
```
19+
20+
## Installation
21+
22+
The `stash` program can be installed by downloading one of the archives from [the latest release](https://github.com/tschaub/stash/releases).
23+
24+
Extract the archive and place the `stash` executable somewhere on your path. See a list of available commands by running `stash` in your terminal.
25+
26+
Homebrew users can install the `stash` program with [`brew`](https://brew.sh/):
27+
28+
```shell
29+
brew update
30+
brew install tschaub/tap/stash
31+
```
32+
33+
## Usage
34+
35+
In order to proxy https resources, you'll need to set up a locally trusted development certificate. Fortunately, this is easy with [`mkcert`](https://github.com/FiloSottile/mkcert/).
36+
37+
To install a locally trusted development certificate:
38+
39+
```shell
40+
# install mkcert if you haven't already
741
brew install mkcert
842

943
# set up certificate
1044
mkcert -install
45+
```
46+
Next, you'll need to determine the location of the certificate files.
1147

12-
# get location of files
13-
mkcert -CAROOT
48+
```shell
49+
# get location of *.pem files
50+
find "$(mkcert -CAROOT)" -name "*.pem"
1451
```
1552

16-
Launch Chrome with proxy server set:
53+
Make note of the location of the certificate `rootCA.pem` and key `rootCA-key.pem` files. You'll use the path to the `rootCA.pem` file in the `--cert-file` argument and the path to `rootCA-key.pem` in the `--key-file` argument to `stash`.
54+
55+
With `stash` running, you can configure your browser to use it as a proxy. For example, to launch Chrome using `stash` as a proxy do this:
1756

1857
```shell
58+
# assuming Chrome is not already running
1959
open -a "Google Chrome" --args --proxy-server="127.0.0.1:9999"
2060
```
21-
22-
Ideas:
23-
* maybe use symbolic link from extensionless file to file with extension to get content-type from the file server

0 commit comments

Comments
 (0)