mirror of
https://github.com/supabase/supabase.git
synced 2026-06-24 09:55:17 +08:00
* removes all generated files * ignore all generated files * moves the docs generator into docusaurus * clean up old files from the generator * generator -> parser * Adds the latest spec * fixing generated path * updates specs * delete generated files * keep the generated folder * keep generated folder * Adds a dart generator * Addds new auth doc for Dart v1 * Adds postgrest method in Dart doc * Adds realtime docs to Dart v1 * Adds storage docs to Dart doc * Adds filters and modifiers to Dart docs spec file * fix: label used in dart sidebar to match spec file for Dart docs * final items for generator * Adds a build command * Adds typescript * fix broken links * fix build * fix import error * lowercase helpers * clean missing file Co-authored-by: dshukertjr <18113850+dshukertjr@users.noreply.github.com>
37 lines
850 B
Plaintext
37 lines
850 B
Plaintext
---
|
|
id: initializing
|
|
title: 'Initializing'
|
|
slug: initializing
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs'
|
|
import TabItem from '@theme/TabItem'
|
|
|
|
## Dart
|
|
|
|
You can initialize a new Supabase client using the `SupabaseClient()` method.
|
|
|
|
The Supabase client is your entrypoint to the rest of the Supabase functionality
|
|
and is the easiest way to interact with everything we offer within the Supabase ecosystem.
|
|
|
|
## Flutter
|
|
|
|
For `supabase_flutter`, you will be using the static `initialize()` method on `Supabase` class.
|
|
|
|
## Examples
|
|
|
|
### Dart `SupabaseClient()`
|
|
|
|
```dart
|
|
final supabase = SupabaseClient('https://xyzcompany.supabase.co', 'public-anon-key');
|
|
```
|
|
|
|
### Flutter `initialize()`
|
|
|
|
```dart title="main.dart"
|
|
Future<void> main() async {
|
|
await Supabase.initialize(url: 'https://xyzcompany.supabase.co', anonKey: 'public-anon-key');
|
|
runApp(MyApp());
|
|
}
|
|
```
|