diff --git a/.gitignore b/.gitignore index 691a1f7..0d43c03 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,5 @@ dist/ worker/node_modules/ worker/.wrangler/ worker/coverage/ + +.env diff --git a/src/pages/app-store.astro b/src/pages/app-store.astro index ab359de..8ec482b 100644 --- a/src/pages/app-store.astro +++ b/src/pages/app-store.astro @@ -38,8 +38,8 @@ const canonicalUrl = "https://pilotprotocol.network/app-store"; anytime.

- Install Pilot + Publish your app Read the docs
@@ -193,7 +193,7 @@ const canonicalUrl = "https://pilotprotocol.network/app-store";

Ready to build or browse agent apps?

- Install Pilot + Publish your app Read the docs
diff --git a/src/pages/publish.astro b/src/pages/publish.astro new file mode 100644 index 0000000..2dd793d --- /dev/null +++ b/src/pages/publish.astro @@ -0,0 +1,505 @@ +--- +import BaseHead from '../components/BaseHead.astro'; +import Nav from '../components/Nav.astro'; +import Footer from '../components/Footer.astro'; +import '../styles/system.css'; + +// API base: the submission server on the VM. Override locally via a .env with +// PUBLIC_PUBLISH_API=http://: +const API = import.meta.env.PUBLIC_PUBLISH_API || 'https://api.pilotprotocol.network'; + +const title = 'Publish an app — Pilot App Store'; +const description = 'Publish your app on the Pilot Protocol app store. We build, sign, and verify an agent-first adapter; you describe it once.'; +const canonicalUrl = 'https://pilotprotocol.network/publish'; +--- + + + + + + + +