Skip to content

aburio/remix-supabase

Repository files navigation

Welcome to Remix + Supabase SSR!

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.

Features

  • 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.

Prerequisites

Before you begin, ensure you have the following installed:

Additionally, you should have:

  • A Supabase account for creating an instance.

Getting Started

Follow these steps to get your application running:

  1. Clone the Repository

    git clone git@github.com:aburio/remix-supabase.git cd remix-supabase
  2. Install Dependencies

    Using npm:

    npm install

    Or using yarn:

    yarn install
  3. 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
    
  4. 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.

Documentation

For more detailed instructions and advanced configurations, refer to the official documentation:

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Support

If you encounter any issues or have questions, please file an issue on GitHub.

Acknowledgements

  • Thanks to the Remix team for creating a fantastic framework.
  • Thanks to Supabase for providing a powerful and easy-to-use backend solution.