A Flutter application for managing notes with Supabase integration.
Follow these instructions to get the project up and running on your local machine.
- Flutter SDK installed and configured.
- Git installed.
- A Supabase project with a database setup.
-
Clone the repository:
git clone <repository-url> cd supabase_notes
-
Install dependencies:
flutter pub get
This project uses Supabase for the backend. You need to configure your Supabase credentials before running the app.
-
Create the configuration file:
Duplicate the
lib/supabase_config.example.dartfile and rename it tolib/supabase_config.dart.Note:
lib/supabase_config.dartis ignored by git to keep your secrets safe. -
Add your credentials:
Open
lib/supabase_config.dartand replace the placeholder values with your actual Supabase project URL and Anon Key.class SupabaseConfig { // Replace with values from Supabase project settings: static const supabaseUrl = 'YOUR_SUPABASE_URL_HERE'; static const supabaseAnonKey = 'YOUR_SUPABASE_ANON_KEY_HERE'; }
Run the following command to start the application:
flutter runflutter run -d chrome
( if you want the .apk file you can text me in Telegram : https://t.me/Dendy_F )