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 9288fa4 commit 4d3dfdfCopy full SHA for 4d3dfdf
.gitignore
@@ -19,3 +19,4 @@ test/cypress/fixtures/example.json
19
docker-build
20
data
21
dist
22
+backend/embed/acme.sh
backend/embed/acme.sh
@@ -0,0 +1,6 @@
1
+#!/usr/bin/bash
2
+
3
+echo "This is a placeholder for the official acme.sh script"
4
+echo "that will be embedded into the binary. If you are seeing"
5
+echo "this message then something is not quite right."
6
+exit 1
backend/embed/main.go
@@ -13,3 +13,7 @@ var Assets embed.FS
13
// MigrationFiles are database migrations
14
//go:embed migrations/*.sql
15
var MigrationFiles embed.FS
16
17
+// AcmeSh script
18
+//go:embed acme.sh
+var AcmeSh embed.FS
0 commit comments