{"id":14964211,"url":"https://github.com/atinux/atidone","last_synced_at":"2025-05-15T03:06:44.588Z","repository":{"id":161176480,"uuid":"635310828","full_name":"atinux/atidone","owner":"atinux","description":"A full-stack application with Auth, SSR and SQL, running on the edge with Nuxt.","archived":false,"fork":false,"pushed_at":"2025-04-14T20:31:13.000Z","size":2233,"stargazers_count":822,"open_issues_count":0,"forks_count":78,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-05-14T21:56:05.648Z","etag":null,"topics":["cloudflare-d1","drizzle-orm","esr","nuxt","nuxt-ui","nuxthub","sqlite","ssr","vue"],"latest_commit_sha":null,"homepage":"https://todos.nuxt.dev","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atinux.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2023-05-02T12:28:14.000Z","updated_at":"2025-05-13T15:21:12.000Z","dependencies_parsed_at":"2024-04-18T18:51:30.323Z","dependency_job_id":"63df0a76-6aef-4271-932b-f2f8526e111c","html_url":"https://github.com/atinux/atidone","commit_stats":{"total_commits":126,"total_committers":11,"mean_commits":"11.454545454545455","dds":0.09523809523809523,"last_synced_commit":"90ddd0092a76f04d6a4fbaaf034c3b788a27f85f"},"previous_names":["atinux/atidone"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fatidone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fatidone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fatidone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fatidone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atinux","download_url":"https://codeload.github.com/atinux/atidone/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254264766,"owners_count":22041793,"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":["cloudflare-d1","drizzle-orm","esr","nuxt","nuxt-ui","nuxthub","sqlite","ssr","vue"],"created_at":"2024-09-24T13:32:46.883Z","updated_at":"2025-05-15T03:06:44.579Z","avatar_url":"https://github.com/atinux.png","language":"Vue","readme":"# Manage your Todos with Atidone ☑️\n\nA demonstration using [Nuxt](https://nuxt.com) with server-side rendering on the edge, authentication and database querying using [Cloudflare D1](https://developers.cloudflare.com/d1/) with [Drizzle ORM](https://orm.drizzle.team/).\n\n[![Deploy to NuxtHub](https://hub.nuxt.com/button.svg)](https://admin.hub.nuxt.com/new?template=todos)\n\n## Features\n\n- [Server-Side Rendering on the Edge](https://nuxt.com/blog/nuxt-on-the-edge)\n- Authentication backed-in using [nuxt-auth-utils](https://github.com/atinux/nuxt-auth-utils)\n- Leverage [Cloudflare D1](https://developers.cloudflare.com/d1/) as database with [drizzle ORM](https://orm.drizzle.team/) using [`hubDatabase()`](https://hub.nuxt.com/docs/storage/database)\n- [Automatic database migrations](https://hub.nuxt.com/docs/features/database#database-migrations) in development \u0026 when deploying\n- User interface made with [Nuxt UI](https://ui.nuxt.com)\n- Embed [Drizzle Studio](https://orm.drizzle.team/drizzle-studio/overview/) in the [Nuxt DevTools](https://devtools.nuxt.com)\n- Cache invalidation and Optimistic UI with [Pinia Colada](https://pinia-colada.esm.dev)\n\n## Live demo\n\nhttps://todos.nuxt.dev\n\nhttps://github.com/atinux/atidone/assets/904724/5f3bee55-dbae-4329-8057-7d0e16e92f81\n\nTo see an example using Passkeys (WebAuthn) for authentication, checkout [todo-passkeys](https://github.com/atinux/todo-passkeys).\n\n## Setup\n\nMake sure to install the dependencies using [pnpm](https://pnpm.io/):\n\n```bash\npnpm i\n```\n\nCreate a [GitHub Oauth Application](https://github.com/settings/applications/new) with:\n- Homepage url: `http://localhost:3000`\n- Callback url: `http://localhost:3000/api/auth/github`\n\nAdd the variables in the `.env` file:\n\n```bash\nNUXT_OAUTH_GITHUB_CLIENT_ID=\"my-github-oauth-app-id\"\nNUXT_OAUTH_GITHUB_CLIENT_SECRET=\"my-github-oauth-app-secret\"\n```\n\nTo create sealed sessions, you also need to add `NUXT_SESSION_PASSWORD` in the `.env` with at least 32 characters:\n\n```bash\nNUXT_SESSION_PASSWORD=\"your-super-long-secret-for-session-encryption\"\n```\n\n## Development\n\nStart the development server on http://localhost:3000\n\n```bash\nnpm run dev\n```\n\nIn the Nuxt DevTools, you can see your tables by clicking on the Hub Database tab:\n\nhttps://github.com/atinux/atidone/assets/904724/7ece3f10-aa6f-43d8-a941-7ca549bc208b\n\n## Deploy\n\nYou can deploy this project on your Cloudflare account for free and with zero configuration using [NuxtHub](https://hub.nuxt.com).\n\n```bash\nnpx nuxthub deploy\n```\n\nIt's also possible to leverage Cloudflare Pages CI for deploying, learn more about the different options on https://hub.nuxt.com/docs/getting-started/deploy\n\n## Remote Storage\n\nOnce you deployed your project, you can connect to your remote database locally running:\n  \n```bash\npnpm dev --remote\n```\n\nLearn more about remote storage on https://hub.nuxt.com/docs/getting-started/remote-storage\n\n## License\n\n[MIT License](./LICENSE)\n","funding_links":[],"categories":["Vue","Starter Kits"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatinux%2Fatidone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatinux%2Fatidone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatinux%2Fatidone/lists"}