Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/supabase/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
dist/
.DS_Store
*.log
7 changes: 7 additions & 0 deletions extensions/supabase/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"printWidth": 120,
"tabWidth": 2,
"trailingComma": "es5",
"semi": true,
"singleQuote": false
}
12 changes: 12 additions & 0 deletions extensions/supabase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

## [Initial Version] - {PR_MERGE_DATE}

### Added

- Initial release
- List all Supabase projects grouped by organization
- View database branches for each project
- Quick access to Supabase Dashboard
- Copy project references and URLs
- Status indicators for projects and branches
21 changes: 21 additions & 0 deletions extensions/supabase/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
37 changes: 37 additions & 0 deletions extensions/supabase/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Supabase

Browse and manage your Supabase projects and database branches directly from Raycast.

## Features

- View all projects across organizations
- Browse database branches
- Quick access to Supabase Dashboard
- Copy project references and URLs

## Setup

1. Get your access token from [Supabase Dashboard](https://supabase.com/dashboard/account/tokens)
2. Open Raycast preferences and paste the token

## Commands

### List Projects

Browse all your Supabase projects grouped by organization.

- **View Branches**: Navigate to see database branches for a project
- **Open Dashboard**: Open the project in Supabase Dashboard
- **Copy Project Ref**: Copy the project reference ID
- **Copy Project URL**: Copy the dashboard URL

## Screenshots

![Project List](metadata/supabase-1.png)
![Project Actions](metadata/supabase-2.png)
![Branch List](metadata/supabase-3.png)
![Branch Actions](metadata/supabase-4.png)

## Credits

- Icon from [Dashboard Icons](https://dashboardicons.com/) by [homarr-labs](https://github.com/homarr-labs/dashboard-icons), licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
Binary file added extensions/supabase/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions extensions/supabase/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const eslint = require("@eslint/js");
const tseslint = require("typescript-eslint");

module.exports = tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
ignores: ["dist/**", "node_modules/**"],
}
);
Empty file.
Binary file added extensions/supabase/metadata/supabase-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/supabase/metadata/supabase-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/supabase/metadata/supabase-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/supabase/metadata/supabase-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading