This repository is a starter template designed to help you build fully server-side rendered (SSR) web applications using Remix and Supabase. By leveraging the power of Remix for the frontend and Supabase for backend services, you can create dynamic, responsive, and scalable web applications.
- Server-Side Rendering: Enjoy the SEO and performance benefits of server-side rendering with Remix.
- Easy Database Integration: Utilize Supabase for a seamless backend experience, including authentication, database management, and more.
- Environment Ready: Pre-configured environment settings to jumpstart your development process.
- Comprehensive Documentation: Links to Remix and Supabase documentation to explore more features and capabilities.
Before you begin, ensure you have the following installed:
Additionally, you should have:
- A Supabase account for creating an instance.
Follow these steps to get your application running:
-
Clone the Repository
git clone git@github.com:aburio/remix-supabase.git cd remix-supabase
-
Install Dependencies
Using npm:
npm install
Or using yarn:
yarn install
-
Set Up Environment Variables
Rename the
.env.example
file to.env
:mv .env.example .env
Edit the
.env
file to include your Supabase URL and ANON key:SUPABASE_URL=your_supabase_url SUPABASE_ANON_KEY=your_supabase_anon_key
-
Run the Development Server
Start the development server:
npm run dev
Or if you're using yarn:
yarn dev
Your application will be running at http://localhost:3000.
For more detailed instructions and advanced configurations, refer to the official documentation:
This project is licensed under the MIT License - see the LICENSE.md
file for details.
If you encounter any issues or have questions, please file an issue on GitHub.
- Thanks to the Remix team for creating a fantastic framework.
- Thanks to Supabase for providing a powerful and easy-to-use backend solution.