You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This application was auto-generated using the Stacksync CDK. It provides a custom Stacksync Connector which provide custom functionality inside Stacksync Workflows.
6
+
7
+
## Setup
8
+
9
+
This application should be managed via the Stacksync CLI. Please refer to the documentation on how to configure this tool.
10
+
11
+
Once the CLI is configured, run ${APP_NAME} locally using:
12
+
13
+
```bash
14
+
stacksync dev
15
+
```
16
+
17
+
To deploy:
18
+
19
+
```bash
20
+
stacksync deploy
21
+
```
22
+
23
+
Add additional modules to your project using:
24
+
25
+
```bash
26
+
stacksync create module --name "[Module name]" --url "[url with API documentation]" --prompt "[Description of your module's functionality]"
27
+
```
28
+
29
+
## Architecture
30
+
31
+
There are a number of key files and structures in this repository:
32
+
33
+
* The `stacksync.yml` file. This file defines most of your application's metadata and serves and a single point of reference for application configuration.
34
+
* The `modules/` folder. This is where the definitions for your individual modules go.
35
+
* Each module is expected to provide:
36
+
*`schema.py`: Defines your app schema. See below for details.
37
+
*`content.py`: Used to fetch dynamic field content if your module requires it.
38
+
*`execute.py`: Your business logic that receives events from Stacksync Workflows.
39
+
*`content.md`: A file used by Stacksync's AI agents. Should provide additional information about best practices for integrating your module into a workflow.
0 commit comments