diff --git a/.env b/.env new file mode 100644 index 0000000..0034014 --- /dev/null +++ b/.env @@ -0,0 +1,7 @@ +# Deploy config (NOT secrets) — committed on purpose. See .env.example. +# Secrets go via Forgejo → Settings → Actions → Secrets + RUNTIME_KEYS, never here. + +# nip.io test domain: auto-resolves to the platform IP (154.83.149.72), no DNS setup. +DOMAIN=e0940758-deploycheck.154.83.149.72.nip.io + +# DEPLOY auto-detects to "static" (no Dockerfile in root); BUILD_DIR defaults to dist. diff --git a/index.html b/index.html new file mode 100644 index 0000000..b6e4802 --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + + Deploy pipeline OK + + + +
+

Deploy pipeline OK

+

Served from the platform via Forgejo Actions + Caddy.

+

Static deploy from e0940758/starter — first push test.

+
+ + diff --git a/package.json b/package.json new file mode 100644 index 0000000..5d73441 --- /dev/null +++ b/package.json @@ -0,0 +1,8 @@ +{ + "name": "starter-deploy-check", + "private": true, + "version": "0.0.0", + "scripts": { + "build": "mkdir -p dist && cp index.html dist/index.html" + } +}