Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,6 @@ supabase stop --no-backup

</Admonition>

<$Show if="!docs:hide_cli_profiles">

<$Partial path="cli_profiles.mdx" />

</$Show>

## Running Supabase locally

The Supabase CLI uses Docker containers to manage the local development stack. Follow the official guide to install and configure [Docker Desktop](https://docs.docker.com/desktop):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ export const IO2_AVAILABLE_REGIONS = [
'ap-southeast-2',
'ca-central-1',
'eu-central-1',
// 'eu-central-2',
'eu-central-2',
'eu-north-1',
'eu-west-1',
'eu-west-2',
// 'eu-west-3',
// 'sa-east-1',
'eu-west-3',
'sa-east-1',
'us-east-1',
'us-east-2',
'us-west-1',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,17 +142,10 @@ export const MarketplaceFeaturedHero = ({
</div>

<div className="mt-1 flex items-center gap-4">
<Button
asChild
type="text"
className="p-0 pointer-events-none"
iconRight={<ArrowRight size={12} />}
size="tiny"
>
<Link href={`/project/${project?.ref}/integrations/${active.id}/overview`}>
{isActiveInstalled ? 'Manage integration' : 'View integration'}
</Link>
</Button>
<span className="inline-flex items-center gap-1.5 text-xs text-foreground">
{isActiveInstalled ? 'Manage integration' : 'View integration'}
<ArrowRight size={12} />
</span>
</div>
</div>
</Link>
Expand Down
Loading