$ openssl genrsa -out private.key 4096openssl req -new -sha256 \| # The initial version | |
| if [ ! -f .env ] | |
| then | |
| export $(cat .env | xargs) | |
| fi | |
| # My favorite from the comments. Thanks @richarddewit & others! | |
| set -a && source .env && set +a |
| //github.com/shadowsocks/shadowsocks-go/cmd/shadowsocks-local/local.go | |
| import "golang.org/x/net/proxy" | |
| import "github.com/elazarl/goproxy" | |
| import "net/http" | |
| func main(){ | |
| //... | |
| parseServerConfig(config) |
| name: Electron CD | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} |