We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 585bb69 commit 8a720c3Copy full SHA for 8a720c3
ct/authentik.sh
@@ -52,6 +52,13 @@ function update_script() {
52
npm run build &>/dev/null
53
msg_ok "Built ${APP} website"
54
55
+ msg_info "Building ${APP} server"
56
+ cd /opt/authentik
57
+ go mod download
58
+ go build -o /go/authentik ./cmd/server
59
+ go build -o /opt/authentik/authentik-server /opt/authentik/cmd/server/
60
+ msg_ok "Built ${APP} server"
61
+
62
msg_info "Installing Python Dependencies"
63
cd /opt/authentik
64
poetry install --only=main --no-ansi --no-interaction --no-root &>/dev/null
0 commit comments