Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluent-ci-templates/supabase-pipeline
A ready-to-use CI/CD Pipeline for deploying your code to Supabase Edge Functions.
https://github.com/fluent-ci-templates/supabase-pipeline
cicd deno pipeline supabase typescript
Last synced: about 6 hours ago
JSON representation
A ready-to-use CI/CD Pipeline for deploying your code to Supabase Edge Functions.
- Host: GitHub
- URL: https://github.com/fluent-ci-templates/supabase-pipeline
- Owner: fluent-ci-templates
- License: mit
- Created: 2023-08-07T13:24:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-18T20:38:25.000Z (5 months ago)
- Last Synced: 2024-07-24T01:02:18.943Z (4 months ago)
- Topics: cicd, deno, pipeline, supabase, typescript
- Language: TypeScript
- Homepage:
- Size: 142 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Supabase Pipeline
[![fluentci pipeline](https://shield.fluentci.io/x/supabase_pipeline)](https://pkg.fluentci.io/supabase_pipeline)
![deno compatibility](https://shield.deno.dev/deno/^1.41)
[![dagger-min-version](https://shield.fluentci.io/dagger/v0.11.7)](https://dagger.io)
[![](https://jsr.io/badges/@fluentci/supabase)](https://jsr.io/@fluentci/supabase)
[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/supabase-pipeline)](https://codecov.io/gh/fluent-ci-templates/supabase-pipeline)
[![ci](https://github.com/fluent-ci-templates/supabase-pipeline/actions/workflows/ci.yml/badge.svg)](https://github.com/fluent-ci-templates/supabase-pipeline/actions/workflows/ci.yml)A ready-to-use CI/CD Pipeline for deploying your application to [Supabase Edge Functions](https://supabase.com/edge-functions).
## 🚀 Usage
Run the following command:
```bash
fluentci run supabase_pipeline
```## 🧩 Dagger Module
Use as a [Dagger](https://dagger.io) Module:
```bash
dagger install github.com/fluent-ci-templates/supabase-pipeline@main
```Call a function from the module:
```bash
dagger -m github.com/fluent-ci-templates/supabase-pipeline@main call \
deploy --src . \
--token env:SUPABASE_ACCESS_TOKEN \
--projectId $PROJECT_ID
```## 🛠️ Environment Variables
| Variable | Description |
|-----------------------|-------------------------------|
| SUPABASE_ACCESS_TOKEN | Your Supabase Access Token |
| PROJECT_ID | Your Supabase Project ID |## ✨ Jobs
| Job | Description |
|-------------|------------------------------------------------------------|
| deploy | Deploy functions to Supabase Edge Functions |```typescript
deploy(
src: Directory | string,
token: Secret | string,
projectId: string
): Promise
```## 👨💻 Programmatic usage
You can also use this pipeline programmatically:
```typescript
import { deploy } from "jsr:@fluentci/supabase";await deploy(
".",
Deno.env.get("SUPABASE_ACCESS_TOKEN")!,
Deno.env.get("PROJECT_ID")!
);```