2 |
11 |
--------------------------------------------------------------------------------
/docs/.vuepress/config.js:
--------------------------------------------------------------------------------
1 | const path = require("path");
2 | const webpack = require("webpack");
3 |
4 | module.exports = {
5 | title: "Docs",
6 | head: [["link", { rel: "icon", href: "/favicon.ico" }]],
7 | description: "Pipedream Documentation - Integrate your apps, data and APIs",
8 | base: "/",
9 | themeConfig: {
10 | algolia: {
11 | apiKey: "1e23962724b59d018bdedc0f5a214ce5",
12 | indexName: "pipedream",
13 | },
14 | logo: "/pipedream.svg",
15 | nav: [
16 | {
17 | text: "Slack",
18 | link: "https://pipedream.com/community",
19 | },
20 | {
21 | text: "Support",
22 | link: "/support/",
23 | },
24 | {
25 | text: "pipedream.com",
26 | link: "https://pipedream.com/",
27 | },
28 | ],
29 | repo: "PipedreamHQ/docs",
30 |
31 | // Optional options for generating "Edit this page" link
32 |
33 | // if your docs are not at the root of the repo:
34 | docsDir: "docs",
35 | editLinks: true,
36 | // custom text for edit link. Defaults to "Edit this page"
37 | editLinkText: "Help us improve this page! Submit an edit on Github",
38 | sidebar: [
39 | "/",
40 | "/support/",
41 | "/sign-up/",
42 | {
43 | title: "Getting Started",
44 | collapsable: false,
45 | children: ["/workflows/", "/your-first-workflow/"],
46 | },
47 | {
48 | title: "Workflow Steps",
49 | collapsable: false,
50 | children: [
51 | "/workflows/steps/",
52 | "/workflows/steps/triggers/",
53 | "/workflows/steps/code/",
54 | "/workflows/steps/code/state/",
55 | "/workflows/steps/code/nodejs/http-requests/",
56 | "/workflows/steps/code/nodejs/working-with-files/",
57 | "/workflows/steps/actions/",
58 | ],
59 | },
60 | {
61 | title: "Workflow Events",
62 | collapsable: false,
63 | children: [
64 | "/workflows/events/",
65 | "/workflows/events/inspect/",
66 | "/workflows/events/replay/",
67 | "/workflows/events/test/",
68 | ],
69 | },
70 | {
71 | title: "Connecting to Apps",
72 | collapsable: false,
73 | children: [
74 | "/apps/all-apps/",
75 | "/connected-accounts/",
76 | "/workflows/steps/code/auth/",
77 | ],
78 | },
79 | {
80 | title: "Error Handling",
81 | collapsable: false,
82 | children: ["/workflows/error-handling/global-error-workflow/"],
83 | },
84 | {
85 | title: "Managing Workflows",
86 | collapsable: false,
87 | children: [
88 | "/workflows/copy/",
89 | "/workflows/managing/",
90 | "/workflows/settings/",
91 | "/public-workflows/",
92 | "/environment-variables/",
93 | ],
94 | },
95 | {
96 | title: "Event Sources",
97 | collapsable: false,
98 | children: ["/event-sources/", "/event-sources/logs/"],
99 | },
100 | {
101 | title: "CLI",
102 | collapsable: false,
103 | children: ["/cli/install/", "/cli/login/", "/cli/reference/"],
104 | },
105 | {
106 | title: "APIs",
107 | collapsable: false,
108 | children: [
109 | "/api/overview/",
110 | "/api/auth/",
111 | "/api/rest/",
112 | "/api/rest/rss/",
113 | "/api/sse/",
114 | ],
115 | },
116 | {
117 | title: "Destinations",
118 | collapsable: false,
119 | children: [
120 | "/destinations/",
121 | "/destinations/http/",
122 | "/destinations/s3/",
123 | "/destinations/email/",
124 | "/destinations/sql/",
125 | "/destinations/sse/",
126 | ],
127 | },
128 | {
129 | title: "Integrations",
130 | collapsable: false,
131 | children: [
132 | "/apps/all-apps/",
133 | "/apps/discord/",
134 | "/apps/intercom/",
135 | "/apps/servicenow/",
136 | "/apps/slack/",
137 | "/apps/twitter/",
138 | "/apps/zoho-books/",
139 | "/apps/zoom/",
140 | ],
141 | },
142 | "/pricing/",
143 | "/limits/",
144 | "/new-feature-or-bug/",
145 | "/security/",
146 | "/status/",
147 | ],
148 | PIPEDREAM_BASE_URL: "https://pipedream.com",
149 | API_BASE_URL: "https://api.pipedream.com/v1",
150 | SQL_API_BASE_URL: "https://rt.pipedream.com/sql",
151 | PAYLOAD_SIZE_LIMIT: "512KB",
152 | EMAIL_PAYLOAD_SIZE_LIMIT: "256KB",
153 | INSPECTOR_EVENT_LIMIT: "100",
154 | INSPECTOR_EVENT_EXPIRY_DAYS: "30",
155 | NODE_VERSION: "10",
156 | },
157 | };
158 |
--------------------------------------------------------------------------------
/docs/.vuepress/enhanceApp.js:
--------------------------------------------------------------------------------
1 | import "inter-ui/inter-hinted.css";
2 | import VueGtm from "vue-gtm";
3 |
4 | export default ({
5 | Vue, // the version of Vue being used in the VuePress app
6 | options, // the options for the root Vue instance
7 | router, // the router instance for the app
8 | siteData // site metadata
9 | }) => {
10 | if (typeof window !== "undefined") {
11 | Vue.use(VueGtm, {
12 | id: "GTM-KBDH3DB",
13 | enabled: true,
14 | debug: false,
15 | vueRouter: router
16 | });
17 | }
18 | };
19 |
--------------------------------------------------------------------------------
/docs/.vuepress/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PipedreamHQ/docs/668cb92be35cc71fab22597284625cb7c9c3d227/docs/.vuepress/public/favicon.ico
--------------------------------------------------------------------------------
/docs/.vuepress/public/pipedream.svg:
--------------------------------------------------------------------------------
1 |