> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shipmobilefast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Backend

> Ship Mobile Fast uses Supabase as the backend.

<Frame>
  <img src="https://mintcdn.com/shipmobilefast-51a499dc/rNBXOQ08cKXtmr3A/images/header/supabase.png?fit=max&auto=format&n=rNBXOQ08cKXtmr3A&q=85&s=49902782bddaf23bf13e555a56abec63" alt="Supabase" className="w-full h-full rounded-xl" width="700" height="320" data-path="images/header/supabase.png" />
</Frame>

<Note>
  If you want to see how do you setup Supabase, go to [Quick Start](/quickstart#supabase).
</Note>

<Steps>
  <Step>
    You need to refer `lib/supabase.ts` file. Example:

    ```tsx {1} theme={null}
    import { supabase } from '@/lib/supabase';
    ```
  </Step>

  <Step>
    You can create queries like below:

    ```tsx {1} theme={null}
    import { supabase } from '@/lib/supabase';

    const { data, error } = await supabase.from('users').select('*');
    ```
  </Step>
</Steps>

<Tip>
  For more information, you can go to the [Supabase Documentation](https://supabase.com/docs).
</Tip>

<Check>
  Thats it!
</Check>
