Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 1017 Bytes

File metadata and controls

33 lines (27 loc) · 1017 Bytes

notes_with_supabase

This repo is for implementing google auth with supabase tutorial.

Getting Started

Create a .env folder and copy dev.json file from .env.example/dev.json. Then update the values from your supabase project dashboard to run the app.

Get the starter code

If you want the starter code clone this repo and switch to 'starter_code' branch and then remove the .git folder.

replace .vscode/launch.json with this content if you have issues running the app

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Notes App",
            "type": "dart",
            "request": "launch",
            "program": "lib/main.dart",
            "args": [
                "--dart-define-from-file",
                ".env/dev.json"
            ]
        },
    ]
}