[TASK] Finish building first working release

This commit is contained in:
Philipp Dieter
2022-03-19 00:23:10 +01:00
parent 7df68dc0eb
commit 18061966d7
14 changed files with 163 additions and 7 deletions

28
Makefile Normal file
View File

@@ -0,0 +1,28 @@
.SILENT:
make_and_deploy:
docker build --tag aptly-resource .
docker tag aptly-resource:latest docker.datentonne.net/concourse/aptly-resource:latest
docker push docker.datentonne.net/concourse/aptly-resource:latest
test_check:
HTTPS_PROXY="http://localhost:8080" \
CURL_CA_BUNDLE="${HOME}/.mitmproxy/mitmproxy-ca-cert.pem" \
./check_test.py
test_in:
HTTPS_PROXY="http://localhost:8080" \
CURL_CA_BUNDLE="${HOME}/.mitmproxy/mitmproxy-ca-cert.pem" \
./in_test.py
test_out:
HTTPS_PROXY="http://localhost:8080" \
CURL_CA_BUNDLE="${HOME}/.mitmproxy/mitmproxy-ca-cert.pem" \
./out_test.py
proxy:
mitmproxy \
--set keep_host_header=true \
--set console_flowlist_layout=list \
--set console_mouse=false \
--set view_order_reversed=true