Add Supabase logo and update environment variable in compose file
This commit is contained in:
parent
a43c916009
commit
dfd564a3a4
@ -931,6 +931,13 @@ function parseDockerComposeFile(Service|Application $resource, bool $isNew = fal
|
|||||||
$savedService->fqdn = $fqdn;
|
$savedService->fqdn = $fqdn;
|
||||||
$savedService->save();
|
$savedService->save();
|
||||||
}
|
}
|
||||||
|
EnvironmentVariable::create([
|
||||||
|
'key' => $key,
|
||||||
|
'value' => $fqdn,
|
||||||
|
'is_build_time' => false,
|
||||||
|
'service_id' => $resource->id,
|
||||||
|
'is_preview' => false,
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
// data_forget($service, "environment.$variableName");
|
// data_forget($service, "environment.$variableName");
|
||||||
// $yaml = data_forget($yaml, "services.$serviceName.environment.$variableName");
|
// $yaml = data_forget($yaml, "services.$serviceName.environment.$variableName");
|
||||||
|
15
public/svgs/supabase.svg
Normal file
15
public/svgs/supabase.svg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<svg width="109" height="113" viewBox="0 0 109 113" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M63.7076 110.284C60.8481 113.885 55.0502 111.912 54.9813 107.314L53.9738 40.0627L99.1935 40.0627C107.384 40.0627 111.952 49.5228 106.859 55.9374L63.7076 110.284Z" fill="url(#paint0_linear)"/>
|
||||||
|
<path d="M63.7076 110.284C60.8481 113.885 55.0502 111.912 54.9813 107.314L53.9738 40.0627L99.1935 40.0627C107.384 40.0627 111.952 49.5228 106.859 55.9374L63.7076 110.284Z" fill="url(#paint1_linear)" fill-opacity="0.2"/>
|
||||||
|
<path d="M45.317 2.07103C48.1765 -1.53037 53.9745 0.442937 54.0434 5.041L54.4849 72.2922H9.83113C1.64038 72.2922 -2.92775 62.8321 2.1655 56.4175L45.317 2.07103Z" fill="#3ECF8E"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear" x1="53.9738" y1="54.974" x2="94.1635" y2="71.8295" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#249361"/>
|
||||||
|
<stop offset="1" stop-color="#3ECF8E"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint1_linear" x1="36.1558" y1="30.578" x2="54.4844" y2="65.0806" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop/>
|
||||||
|
<stop offset="1" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -2,6 +2,7 @@
|
|||||||
# slogan: The open source Firebase alternative.
|
# slogan: The open source Firebase alternative.
|
||||||
# tags: firebase, alternative, open-source
|
# tags: firebase, alternative, open-source
|
||||||
# minversion: 4.0.0-beta.228
|
# minversion: 4.0.0-beta.228
|
||||||
|
# logo: svgs/supabase.svg
|
||||||
|
|
||||||
services:
|
services:
|
||||||
supabase-kong:
|
supabase-kong:
|
||||||
@ -12,8 +13,8 @@ services:
|
|||||||
supabase-analytics:
|
supabase-analytics:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
environment:
|
environment:
|
||||||
- JWT_SERCET=${SERVICE_PASSWORD_JWT}
|
|
||||||
- SERVICE_FQDN_SUPABASE
|
- SERVICE_FQDN_SUPABASE
|
||||||
|
- JWT_SERCET=${SERVICE_PASSWORD_JWT}
|
||||||
- KONG_DATABASE=off
|
- KONG_DATABASE=off
|
||||||
- KONG_DECLARATIVE_CONFIG=/home/kong/kong.yml
|
- KONG_DECLARATIVE_CONFIG=/home/kong/kong.yml
|
||||||
# https://github.com/supabase/cli/issues/14
|
# https://github.com/supabase/cli/issues/14
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user