{"id":16364050,"url":"https://github.com/rphlmr/supa-remix-stack","last_synced_at":"2025-03-23T02:31:54.004Z","repository":{"id":119510041,"uuid":"577274747","full_name":"rphlmr/supa-remix-stack","owner":"rphlmr","description":"A Remix Stack 100% Supabase","archived":false,"fork":false,"pushed_at":"2023-10-10T13:51:16.000Z","size":23,"stargazers_count":21,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-18T16:52:13.987Z","etag":null,"topics":["remix-run","remix-stack","supabase","supabase-auth"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/rphlmr.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":"2022-12-12T11:28:40.000Z","updated_at":"2025-01-19T16:49:40.000Z","dependencies_parsed_at":"2023-10-10T16:02:50.763Z","dependency_job_id":null,"html_url":"https://github.com/rphlmr/supa-remix-stack","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rphlmr%2Fsupa-remix-stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rphlmr%2Fsupa-remix-stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rphlmr%2Fsupa-remix-stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rphlmr%2Fsupa-remix-stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rphlmr","download_url":"https://codeload.github.com/rphlmr/supa-remix-stack/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245047979,"owners_count":20552430,"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":["remix-run","remix-stack","supabase","supabase-auth"],"created_at":"2024-10-11T02:29:11.836Z","updated_at":"2025-03-23T02:31:53.725Z","avatar_url":"https://github.com/rphlmr.png","language":"TypeScript","readme":"# Supa Remix Stack\n\nA quick start for Remix apps with Supabase.\n\nLearn more about [Remix Stacks](https://remix.run/stacks).\nLearn more about [Supabase Auth Helper](https://supabase.com/docs/guides/auth/auth-helpers/remix).\n\n```\nnpx create-remix@latest --template rphlmr/supa-remix-stack\n```\n\n## What's in the stack\n\n\u003e ⚠️ Typescript only\n\n- [GitHub authentication](https://supabase.com/docs/guides/auth/auth-github)\n- [Supabase Remix Auth Helper](https://supabase.com/docs/guides/auth/auth-helpers/remix)\n- [Supabase JS SDK](https://supabase.com/docs/reference/javascript)\n- Vercel deploy target\n- Styling with [Tailwind](https://tailwindcss.com/)\n- Raw unstyled components with [HeadlessUI](https://headlessui.com/)\n- Icons with [Heroicons](https://heroicons.com/)\n- Utility function to efficiently merge Tailwind CSS classes in JS without style conflicts with [Tailwind Merge](https://github.com/dcastil/tailwind-merge)\n- Tailwind official plugins :\n  - [Typography](https://tailwindcss.com/docs/typography-plugin)\n  - [Forms](https://github.com/tailwindlabs/tailwindcss-forms)\n  - [Aspect Ratio](https://github.com/tailwindlabs/tailwindcss-aspect-ratio)\n  - [Line Clamp](https://github.com/tailwindlabs/tailwindcss-line-clamp)\n- Tailwind unofficial plugins :\n  - [Tailwind Scrollbar](https://github.com/adoxography/tailwind-scrollbar)\n- Tailwind Eslint\n- Code formatting with [Prettier](https://prettier.io)\n  - [Tailwind Prettier](https://github.com/tailwindlabs/prettier-plugin-tailwindcss)\n- Linting with [ESLint](https://eslint.org)\n  - [Tailwind Eslint](https://github.com/francoismassart/eslint-plugin-tailwindcss)\n- Static Types with [TypeScript](https://typescriptlang.org)\n\nNot a fan of bits of the stack? Fork it, change it, and use `npx create-remix --template your/repo`! Make it your own.\n\n## Development\n\nFrom your terminal:\n\n```sh\nnpm run dev\n```\n\nThis starts your app in development mode, rebuilding assets on file changes.\n\n## Deployment\n\nFirst, build your app for production:\n\n```sh\nnpm run build\n```\n\nThen run the app in production mode:\n\n```sh\nnpm start\n```\n\nNow you'll need to pick a host to deploy it to.\n\n## Seed your DB\nRun `seed/script.sql` in your Supabase project SQL editor.\n\n### Bonus: Generate types from your DB\n\u003e You need to login to Supabase first with `supabase login`\n\u003e More info : https://supabase.com/docs/reference/cli\n\n```sh\nsupabase gen types typescript --project-id your_project_id \u003e app/supabase/db_types.ts\n```\n\n## Configure GitHub Auth\nFollow the [Supabase guide](https://supabase.com/docs/guides/auth/social-login/auth-github)\n\n### DIY\n\nIf you're familiar with deploying node applications, the built-in Remix app server is production-ready.\n\nMake sure to deploy the output of `remix build`\n\n- `build/`\n- `public/build/`\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frphlmr%2Fsupa-remix-stack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frphlmr%2Fsupa-remix-stack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frphlmr%2Fsupa-remix-stack/lists"}