mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-14 14:57:28 +00:00
feat: add c0mpute plugin and hire-us request flow
This commit is contained in:
parent
1a87c2f26d
commit
b1d8fe475a
20 changed files with 1271 additions and 59 deletions
21
plugins/c0mpute/src/manifest.ts
Normal file
21
plugins/c0mpute/src/manifest.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import type { PluginManifest } from "@logicsrc/plugin-core";
|
||||
|
||||
export const c0mputeManifest: PluginManifest = {
|
||||
id: "c0mpute",
|
||||
name: "c0mpute",
|
||||
version: "0.1.0",
|
||||
type: ["compute", "jobs", "workers", "usage", "settlement"],
|
||||
default: true,
|
||||
capabilities: [
|
||||
"compute.jobs.sync",
|
||||
"compute.jobs.dispatch",
|
||||
"compute.workers.sync",
|
||||
"compute.quotes.create",
|
||||
"compute.usage.report",
|
||||
"compute.settlements.status",
|
||||
"webhook.compute_status",
|
||||
"reputation.compute_event"
|
||||
],
|
||||
commands: ["c0mpute", "compute", "workers", "quotes"],
|
||||
env: ["C0MPUTE_API_URL", "C0MPUTE_API_KEY", "C0MPUTE_WEBHOOK_SECRET"]
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue