Skip to content

visualdendy/SupabaseNotesV2

Repository files navigation

Supabase Notes V2

A Flutter application for managing notes with Supabase integration.

Getting Started

Follow these instructions to get the project up and running on your local machine.

Prerequisites

  • Flutter SDK installed and configured.
  • Git installed.
  • A Supabase project with a database setup.

Installation

  1. Clone the repository:

    git clone <repository-url>
    cd supabase_notes
  2. Install dependencies:

    flutter pub get

Configuration

This project uses Supabase for the backend. You need to configure your Supabase credentials before running the app.

  1. Create the configuration file:

    Duplicate the lib/supabase_config.example.dart file and rename it to lib/supabase_config.dart.

    Note: lib/supabase_config.dart is ignored by git to keep your secrets safe.

  2. Add your credentials:

    Open lib/supabase_config.dart and 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';
    }

Running the App

Run the following command to start the application:

flutter run

flutter run -d chrome

( if you want the .apk file you can text me in Telegram : https://t.me/Dendy_F )

About

SupabaseNotesV2: A clean note taking application with Supabase backend.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published