-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(postgres): create database if POSTGRES_* envs are defined
- Loading branch information
Showing
5 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,16 +17,16 @@ fluentci run --wasm postgres start | |
|
||
| Name | Description | | ||
| ------ | --------------------------------------------| | ||
| start | Start Postgres | | ||
| stop | Stops Postgres | | ||
| start | Start Postgres | | ||
| stop | Stops Postgres | | ||
|
||
## Code Usage | ||
|
||
Add `fluentci-pdk` crate to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
fluentci-pdk = "0.2.1" | ||
fluentci-pdk = "0.2.3" | ||
``` | ||
|
||
Use the following code to call the plugin: | ||
|
@@ -36,7 +36,7 @@ use fluentci_pdk::dag; | |
|
||
// ... | ||
|
||
dag().call("https://pkg.fluentci.io/[email protected].4?wasm=1", "start", vec![])?; | ||
dag().call("https://pkg.fluentci.io/[email protected].5?wasm=1", "start", vec![])?; | ||
``` | ||
|
||
## 📚 Examples | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ keywords = [ | |
] | ||
license = "MIT" | ||
name = "postgres" | ||
version = "0.1.4" | ||
version = "0.1.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters