Skip to content

Commit 8c43fd1

Browse files
authored
Merge pull request #8 from sjhoeksma/dev
Stable Release
2 parents 1accca7 + 7a14248 commit 8c43fd1

File tree

105 files changed

+22335
-2200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+22335
-2200
lines changed

.github/workflows/docs.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Deploy Docs to GitHub Pages
2+
3+
on:
4+
workflow_dispatch:
5+
# Review gh actions docs if you want to further define triggers, paths, etc
6+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
deploy:
13+
name: Deploy to GitHub Pages
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 18
22+
cache: yarn
23+
24+
- name: Install dependencies
25+
run: cd documentation && yarn install --frozen-lockfile
26+
- name: Build website
27+
run: cd documentation && yarn build
28+
29+
# Popular action to deploy to GitHub Pages:
30+
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
31+
- name: Deploy to GitHub Pages
32+
uses: peaceiris/actions-gh-pages@v3
33+
with:
34+
github_token: ${{ secrets.GITHUB_TOKEN }}
35+
# Build output to publish to the `gh-pages` branch:
36+
publish_dir: ./documentation/build
37+
# The following lines assign commit authorship to the official
38+
# GH-Actions bot for deploys to `gh-pages` branch:
39+
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
40+
# The GH actions bot is used by default if you didn't specify the two fields.
41+
# You can swap them out with your own user credentials.
42+
user_name: github-actions[bot]
43+
user_email: 41898282+github-actions[bot]@users.noreply.github.com

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.yarn/
22
node_modules/
33
lowcoder-comp-bpmn-io-*.tgz
4-
.DS_Store
4+
.DS_Store
5+
package-lock.json
6+
.vscode/

.vscode/cody.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"readme": {
3+
"description": "Readme for current dir",
4+
"prompt": "Write a detailed README.md file to document the code located in the same directory as my current selection. Summarize what the code in this directory is meant to accomplish. Explain the key files, functions, classes, and features. Use Markdown formatting for headings, code blocks, lists, etc. to make the it organized and readable. Aim for a beginner-friendly explanation that gives a developer unfamiliar with the code a good starting point to understand it. Make sure to include: - Overview of directory purpose - Functionality explanations - Relevant diagrams or visuals if helpful. Write the README content clearly and concisely using complete sentences and paragraphs based on the shared context. Use proper spelling, grammar, and punctuation throughout. Surround your full README text with triple backticks so it renders properly as a code block. Do not make assumptions or fabricating additional details.",
5+
"context": {
6+
"currentDir": true,
7+
"selection": true
8+
}
9+
},
10+
"childrenmap": {
11+
"description": "Markdown for all Childrenmap",
12+
"prompt": "Write a markdown list for the childrenMap in the selected code. Summarize what it is meant to accomplish.Use markdown formating to make the it organized and readable.",
13+
"context": {
14+
"selection": true,
15+
"currentFile": true
16+
}
17+
},
18+
"smellcode": {
19+
"description": "Find code smells",
20+
"prompt": "Find code smells, potential bugs, and unhandled errors in my selected code. Create a list with the top five errors you can find, and include a short informative description and suggestion for each. Please only respond with the list of errors and nothing else.",
21+
"context": {
22+
"selection": true,
23+
"currentFile": true
24+
}
25+
},
26+
"methodexposed": {
27+
"description": "Markdown for all Methods",
28+
"prompt": "Write code assigning a variable with for all exposed methods within withMethodExposing of the selection a markdown. Summarize what it is meant to accomplish including all parameters.Use markdown formating to make the it organized and readable.",
29+
"context": {
30+
"selection": true,
31+
"currentFile": true
32+
}
33+
}
34+
}

.vscode/settings.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,16 @@
1212
},
1313
"[typescriptreact]": {
1414
"editor.defaultFormatter": "vscode.typescript-language-features"
15-
}
16-
}
15+
},
16+
"cSpell.words": [
17+
"coverpage",
18+
"docsify",
19+
"eventlog",
20+
"geospatial",
21+
"lowcoder",
22+
"lowcoderdev",
23+
"npmjs",
24+
"Openlayers",
25+
"sjhoeksma"
26+
]
27+
}

0 commit comments

Comments
 (0)