Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluent-ci-templates/drizzlekit-pipeline
A ready-to-use CI/CD Pipeline for managing your database migrations with Drizzle Kit
https://github.com/fluent-ci-templates/drizzlekit-pipeline
cicd dagger deno drizzle-kit drizzle-orm pipeline typescript
Last synced: about 1 month ago
JSON representation
A ready-to-use CI/CD Pipeline for managing your database migrations with Drizzle Kit
- Host: GitHub
- URL: https://github.com/fluent-ci-templates/drizzlekit-pipeline
- Owner: fluent-ci-templates
- License: mit
- Created: 2023-09-01T10:56:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-22T20:33:06.000Z (10 months ago)
- Last Synced: 2024-02-22T21:28:50.102Z (10 months ago)
- Topics: cicd, dagger, deno, drizzle-kit, drizzle-orm, pipeline, typescript
- Language: TypeScript
- Homepage:
- Size: 188 KB
- Stars: 1
- 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
# Drizzlekit Pipeline
[![fluentci pipeline](https://shield.fluentci.io/x/drizzlekit_pipeline)](https://pkg.fluentci.io/drizzlekit_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/drizzlekit)](https://jsr.io/@fluentci/drizzlekit)
[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/drizzlekit-pipeline)](https://codecov.io/gh/fluent-ci-templates/drizzlekit-pipeline)A ready-to-use CI/CD Pipeline for managing your database migrations with [Drizzle Kit](https://orm.drizzle.team/kit-docs/overview)
## 🚀 Usage
Run the following command in your project:
```bash
fluentci run drizzlekit_pipeline
```Or, if you want to use it as a template:
```bash
fluentci init -t drizzlekit
```This will create a `.fluentci` folder in your project.
Now you can run the pipeline with:
```bash
fluentci run .
```## Dagger Module
Use as a [Dagger](https://dagger.io) module:
```bash
dagger install github.com/fluent-ci-templates/drizzlekit-pipeline
```## Environment variables
| Variable | Description |
| ---------------- | ------------------------------ |
| DATABASE_URL | The database connection string |
| TURSO_AUTH_TOKEN | The Turso Auth token, required if you are using Turso |## Jobs
| Job | Description |
| --------- | ------------------------- |
| push | Apply schema changes |```typescript
push(
src: string | Directory | undefined = ".",
databaseUrl: string | Secret
): Promise
```## Programmatic usage
You can also use this pipeline programmatically:
```ts
import { push } from "jsr:@fluentci/drizzlekit";await push();
```