{"id":15136731,"url":"https://github.com/meldiron/authui","last_synced_at":"2025-06-14T23:02:42.402Z","repository":{"id":166778290,"uuid":"642279937","full_name":"Meldiron/authui","owner":"Meldiron","description":"Fully customizable login flow for your applications. Get started in minutes, not hours!","archived":false,"fork":false,"pushed_at":"2025-01-04T08:55:10.000Z","size":2026,"stargazers_count":76,"open_issues_count":4,"forks_count":9,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-20T12:07:13.129Z","etag":null,"topics":["appwrite","supabase","svelte","sveltekit"],"latest_commit_sha":null,"homepage":"https://authui.site/","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Meldiron.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-05-18T08:05:31.000Z","updated_at":"2025-05-17T16:56:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"f394e52b-0313-440d-b943-da67217d9df2","html_url":"https://github.com/Meldiron/authui","commit_stats":{"total_commits":37,"total_committers":1,"mean_commits":37.0,"dds":0.0,"last_synced_commit":"3acfc716259d99f8db0796412b9f39f411100468"},"previous_names":["meldiron/authui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Meldiron/authui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Fauthui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Fauthui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Fauthui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Fauthui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Meldiron","download_url":"https://codeload.github.com/Meldiron/authui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meldiron%2Fauthui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259896115,"owners_count":22928327,"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":["appwrite","supabase","svelte","sveltekit"],"created_at":"2024-09-26T06:40:56.756Z","updated_at":"2025-06-14T23:02:42.355Z","avatar_url":"https://github.com/Meldiron.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Cover](static/cover.png)\n\n# 🔐 Auth UI\n\n\u003e Fully customizable login flow for your applications. Get started in minutes, not hours!\n\n![Almost Icon](static/favicon.png)\n\n## 🧰 Tech Stack\n\n- [Appwrite](https://appwrite.io/)\n- [Svelte Kit](https://kit.svelte.dev/)\n- [TypeScript](https://www.typescriptlang.org/)\n- [Pink Design](https://pink.appwrite.io/)\n\n## 🛠️ Setup Server\n\n1. Register [Appwrite](https://cloud.appwrite.io/) account\n2. Create project\n3. Install Appwrite CLI\n4. Login with `appwrite login`\n5. Update project ID in `appwrite.json`\n6. Deploy database structure with `appwrite deploy collection`\n\n## 👀 Client Setup\n\n1. Copy `.env.example` to `.env`\n2. Install libraries `npm install`\n3. Update projectID or endpoint in `src/lib/appwrite.ts`, if not using production\n4. Start server `npm run dev`\n\n## 🚨 Moderation\n\nModerate page documents in Appwrite Console. Delete pages that are spam.\n\n## 🚀 Deploy\n\n1. Deploy frontend on root domain such as `myapp.com`\n2. Add frontend domain as a platform in Appwrite project\n\n## 🤝 Contributing\n\nTo contribute to frontend, make sure to use the [Pink Design](https://pink.appwrite.io/) design system. For state management, [Svelte Stores](https://svelte.dev/tutorial/writable-stores/) should be used.\n\nWhen contributing to Appwrite Functions, use [Appwrite CLI](https://appwrite.io/docs/command-line). Also use Appwrite CLI to sync changes to project structure such as databases or collections.\n\n## 🔮 Future Plans\n\n- Nicer delete confirmation modal\n- Improve Phone login UI\n- Account management (claim account, delete account, change name, manage sessions)\n- More providers\n\n## 🖼️ Screenshots\n\n![Screenshot](docs/ss1.png)\n![Screenshot](docs/ss2.png)\n![Screenshot](docs/ss3.png)\n![Screenshot](docs/ss4.png)\n\n## 🤖 Auto-generated documentation\n\n# create-svelte\n\nEverything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).\n\n## Creating a project\n\nIf you're seeing this, you've probably already done this step. Congrats!\n\n```bash\n# create a new project in the current directory\nnpm create svelte@latest\n\n# create a new project in my-app\nnpm create svelte@latest my-app\n```\n\n## Developing\n\nOnce you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:\n\n```bash\nnpm run dev\n\n# or start the server and open the app in a new browser tab\nnpm run dev -- --open\n```\n\n## Building\n\nTo create a production version of your app:\n\n```bash\nnpm run build\n```\n\nYou can preview the production build with `npm run preview`.\n\n\u003e To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeldiron%2Fauthui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeldiron%2Fauthui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeldiron%2Fauthui/lists"}