{"id":21885154,"url":"https://github.com/unfolding-io/astrorante","last_synced_at":"2025-04-09T18:20:38.867Z","repository":{"id":248098704,"uuid":"826817335","full_name":"unfolding-io/Astrorante","owner":"unfolding-io","description":"AstroRante is a state-of-the-art website theme crafted for fine dining establishments. Combining the power of Astro, Storyblok CMS, Vue, and Tailwind, AstroRante delivers an unparalleled online presence for your restaurant.","archived":false,"fork":false,"pushed_at":"2024-12-28T15:15:37.000Z","size":6992,"stargazers_count":58,"open_issues_count":1,"forks_count":19,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-02T16:09:16.470Z","etag":null,"topics":["astro","astrotheme","restaurant-website","storyblok","tailwindcss","vue"],"latest_commit_sha":null,"homepage":"https://astrorante.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":null,"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":"2024-07-10T12:42:01.000Z","updated_at":"2025-04-02T14:23:05.000Z","dependencies_parsed_at":"2024-12-28T15:33:34.348Z","dependency_job_id":null,"html_url":"https://github.com/unfolding-io/Astrorante","commit_stats":null,"previous_names":["unfolding-io/astrorante"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FAstrorante","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FAstrorante/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FAstrorante/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unfolding-io%2FAstrorante/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unfolding-io","download_url":"https://codeload.github.com/unfolding-io/Astrorante/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248085331,"owners_count":21045141,"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","astrotheme","restaurant-website","storyblok","tailwindcss","vue"],"created_at":"2024-11-28T10:19:57.119Z","updated_at":"2025-04-09T18:20:38.842Z","avatar_url":"https://github.com/unfolding-io.png","language":"Astro","funding_links":["https://www.buymeacoffee.com/unfolding.io"],"categories":[],"sub_categories":[],"readme":"# Astrorante | Astro + Storyblok 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## 📝 1. Setting up the .env file\n\nrename the `env.txt` to `.env` and fill in your details.\n\n_Make sure you add your Storyblok space region `eu, us, ap, ca, cn`_\n\n```sh\nSTORYBLOK_PREVIEW_TOKEN=XXX\nSTORYBLOK_PERSONAL_TOKEN=XXX\nSTORYBLOK_SPACE_ID=000000\nSTORYBLOK_REGION=eu\nLOCALE=en-US\nCURRENCY=USD\nSITE_LANG=en\n```\n\nAlso add this to your netlify/vercel deploy settings.\n\n### 🧰 2. Install dependencies\n\n```bash\nnpm install\n```\n\n### 🛠️ 3. Start Development server\n\n```bash\nnpm run dev\n```\n\n### 🔄 4. Sync your Storyblok Space\n\nopen `https://localhost:4321/setup`\n\nAnd sync your Datasources, Components, and stories. it is best to first delete before syncing.\n\n![Astrorante](https://astrorante.unfolding.io/screenshots/sync.png)\n\n### ⚙️ 5. Add your site to the astro.config and set your adapter (vercel or netlify)\n\n```javascript\n\nexport default defineConfig({\n    site: 'https://your-website.com',\n    adapter: vercel(), // vercel() or netlify()\n\n    ....\n\n```\n\n### 🚀 6. Deploy to Vercel or Netlify\n\n[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Funfolding-io%2FAstrorante\u0026env=STORYBLOK_PREVIEW_TOKEN,STORYBLOK_PERSONAL_TOKEN,STORYBLOK_SPACE_ID,LOCALE,CURRENCY,SITE_LANG\u0026envDescription=Configure%20your%20site%3A\u0026envLink=https%3A%2F%2Fastrorante.unfolding.io%2Fnews%2Fgetting-started%2F)\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/unfolding-io/Astrorante)\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 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\n[Discord server](https://astro.build/chat).\n\n## 📚 Tech Stack\n\nAstro, Storyblok CMS, 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\nquickly address the problem, please provide detailed information about the bug and steps to\nreproduce it.\n\nFor those seeking priority assistance, we offer premium support services. Feel free to reach out to\nus by email at [hello@unfolding.io.](mailto:hello@unfolding.io.) We're here to help!\n\n## ☕️ Want to Caffeinate your Developer?\n\nBy [caffeinating](https://www.buymeacoffee.com/unfolding.io) your developer, you're not just getting\nthe 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## 📸 Screenshots\n\n![Astrorante](https://astrorante.unfolding.io/screenshots/Screenshot_0.png)\n![Astrorante](https://astrorante.unfolding.io/screenshots/Screenshot_1.png)\n![Astrorante](https://astrorante.unfolding.io/screenshots/Screenshot_2.png)\n![Astrorante](https://astrorante.unfolding.io/screenshots/Screenshot_3.png)\n![Astrorante](https://astrorante.unfolding.io/screenshots/Screenshot_4.png)\n![Astrorante](https://astrorante.unfolding.io/screenshots/Screenshot_5.png)\n![Astrorante](https://astrorante.unfolding.io/screenshots/sync.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funfolding-io%2Fastrorante","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funfolding-io%2Fastrorante","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funfolding-io%2Fastrorante/lists"}