{"id":21885161,"url":"https://github.com/unfolding-io/starfunnel","last_synced_at":"2025-06-25T12:33:43.308Z","repository":{"id":208077738,"uuid":"720765206","full_name":"unfolding-io/StarFunnel","owner":"unfolding-io","description":"the Astro powered landing page builder","archived":false,"fork":false,"pushed_at":"2024-07-08T10:42:58.000Z","size":28969,"stargazers_count":125,"open_issues_count":1,"forks_count":65,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-31T19:21:19.467Z","etag":null,"topics":["astro","astro-theme","blog","landing-page","mailchimp","mailgun","postmark","sales-funnel","slack","static-cms","tailwind"],"latest_commit_sha":null,"homepage":"https://starfunnel.unfolding.io/","language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unfolding-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-19T14:35:58.000Z","updated_at":"2025-03-21T16:55:50.000Z","dependencies_parsed_at":"2025-02-10T03:00:39.383Z","dependency_job_id":"fc819444-8f0d-4980-b6e4-1f28c8616abb","html_url":"https://github.com/unfolding-io/StarFunnel","commit_stats":null,"previous_names":["unfolding-io/starfunnel"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FStarFunnel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FStarFunnel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FStarFunnel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FStarFunnel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unfolding-io","download_url":"https://codeload.github.com/unfolding-io/StarFunnel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253162643,"owners_count":21863956,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["astro","astro-theme","blog","landing-page","mailchimp","mailgun","postmark","sales-funnel","slack","static-cms","tailwind"],"created_at":"2024-11-28T10:20:00.137Z","updated_at":"2025-05-08T23:28:40.122Z","avatar_url":"https://github.com/unfolding-io.png","language":"Astro","funding_links":["https://www.buymeacoffee.com/unfolding.io"],"categories":[],"sub_categories":[],"readme":"# StarFunnel | Astro + Static CMS\n\n[![License: CC BY-ND 4.0](https://img.shields.io/badge/License-CC_BY--ND_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nd/4.0/)\n\n\n## Clone this repo or deploy to netlify\n\nEasily deploy this theme to Netlify or Vercel.\n\n## 1. Setting up the .env file\n\nrename the `env.txt` to `.env` and fill in your details\n\n    BLOG_SLUG=news \n    WEBSITE_LANGUAGE=en\n    CURRENCY=USD \n    NODE_VERSION=18 \n    NEWSLETTER_PROVIDER=mailchimp\n\n    MAILCHIMP_API_KEY=XXX\n    MAILCHIMP_SERVER_PREFIX=us21\t\n    MAILCHIMP_LIST_ID=XXX\n\n    SLACK_CHANNEL_ID=XXX\n    SLACK_TOKEN=XXX\n\n    FROM_EMAIL_ADDRESS=hello@youremail.com\n    TO_EMAIL_ADDRESS=hello@youremail.com \n\n    MAILGUN_API_KEY=XXX\n    MAILGUN_DOMAIN=your-domain.com\n    MAILGUN_API_URL=https://api.eu.mailgun.net\n\n    POSTMARK_SERVER_TOKEN=XXX\n\nAlso add this to your netlify deploy settings.\n\n### 2. Configure your Static CMS Backend\n\nNavigate to `src/pages/admin.astro` and provide your Git repository details. You can find a list of all supported Git backends at:\n\u003chttps://www.staticcms.org/docs/backends-overview\u003e\n\n**_Gitlab Example:_**\n\n```javascript\n\nconst config = {\n\tlocale: lang,\n\tsite_url: url,\n\tlogo_url: 'https://starfunnel.unfolding.io/logo.svg',\n\tlocal_backend: true,\n\tbackend: {\n\t\tname: 'gitlab',\n\t\trepo: '/\u003cyour-gitlab-repo\u003e',\n\t\tauth_type: 'pkce', // Required for pkce\n\t\tapp_id: 'xxxx', // Application ID from your GitLab settings\n\t\tcommit_messages: {\n\t\t\tcreate: 'Create {{collection}} \"{{slug}}\"',\n\t\t\tupdate: 'Update {{collection}} \"{{slug}}\"',\n\t\t\tdelete: 'Delete {{collection}} \"{{slug}}\"',\n\t\t\tuploadMedia: 'Upload \"{{path}}\"',\n\t\t\tdeleteMedia: 'Delete \"{{path}}\"'\n\t\t}\n\t},\n\tsearch: 'true',\n    ....\n}\n\n```\n\n### 3. Add your site to the astro config and set your adapter (vercel or netlify)\n\n\n```javascript\n\nexport default defineConfig({\n\tsite: 'https://your-website.com',\n\toutput: \"hybrid\",\n  \tadapter: vercel(), // vercel() or netlify()\n\n    ....\n\n```\n\n### 4. Install dependencies\n\n```bash\nnpm install\n```\n\n### 🛠️ 5. Start Development server\n\n```bash\nnpm run dev\n```\n\nIf you wish to engage the local backend:\n\n```bash\nnpm run cms-proxy-server\n```\n\nNow you can open Static CMS on http\u0026#x3A;//localhost:4321/admin/\n\n## 🛸 Commands\n\nAll commands are run from the root of the project, from a terminal:\n\n| Command                    | Action                                           |\n| -------------------------- | ------------------------------------------------ |\n| `npm install`              | Installs dependencies                            |\n| `npm run dev`              | Starts local dev server at `localhost:4321`      |\n| `npm run cms-proxy-server` | Starts Staticcms proxy server for local-backend  |\n| `npm run build`            | Build your production site to `./dist/`          |\n| `npm run preview`          | Preview your build locally, before deploying     |\n| `npm run astro ...`        | Run CLI commands like `astro add`, `astro check` |\n| `npm run astro -- --help`  | Get help using the Astro CL                      |\n\n## 👀 Want to learn more about Astro?\n\nCheck out [Astro documentation](https://docs.astro.build) or jump into Astro's [Discord server](https://astro.build/chat).\n\n## 📚 Tech Stack\n\nAstro, MDX, Vue, TailwindCSS\n\n## 🛟 Support\n\nIf you encounter any issues or bugs, we encourage you to open an issue in the repository. To help us quickly address the problem, please provide detailed information about the bug and steps to reproduce it.\n\nFor those seeking priority assistance, we offer premium support services. Feel free to reach out to us by email at [hello@unfolding.io.](mailto:hello@unfolding.io.) We're here to help!\n\n## 🚕 Roadmap\n\nAs we journey towards v1.0, we want to integrate the best sales tools on the market. If you have requests, please let us know!\n\n## ☕️ Want to Caffeinate your Developer? \n\nBy [caffeinating](https://www.buymeacoffee.com/unfolding.io) your developer, you're not just getting the best out of them; you're also ensuring a cheerful and energetic work environment.😊\n\n[![buymeacoffee](https://starfunnel.unfolding.io/screenshots/bymeacoffee.webp)](https://www.buymeacoffee.com/unfolding.io)\n\n\n\n\n\n## 📸 Screenshots\n\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_1.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_2.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_3.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_4.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_5.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_6.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_7.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_8.jpg)\n![StarFunnel](https://starfunnel.unfolding.io/screenshots/screenshot_9.jpg) \n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funfolding-io%2Fstarfunnel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funfolding-io%2Fstarfunnel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funfolding-io%2Fstarfunnel/lists"}