-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
23 changed files
with
702 additions
and
124 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.git | ||
*Dockerfile* | ||
npm-debug.log | ||
node_modules | ||
.env |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. | ||
# Documentation: https://docs.github.com/en/actions | ||
|
||
name: deploy | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- development | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Trigger build | ||
shell: bash | ||
run: | | ||
curl \ | ||
--fail \ | ||
--silent \ | ||
--request POST \ | ||
--form token=${{ secrets.CI_TOKEN }} \ | ||
--form ref=main \ | ||
--form 'variables[GITHUB_COMMIT_REF_NAME]'=$GITHUB_REF_NAME \ | ||
${{ secrets.CI_WEBHOOK_URL }} \ | ||
&> /dev/null |
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 |
---|---|---|
@@ -1,41 +1,33 @@ | ||
{ | ||
"index_name": "tiptap_v2", | ||
"start_urls": [ | ||
"https://tiptap.dev/docs" | ||
], | ||
"sitemap_urls": [ | ||
"https://tiptap.dev/docs/sitemap.xml" | ||
], | ||
"start_urls": ["https://tiptap.dev/docs"], | ||
"sitemap_urls": ["https://tiptap.dev/docs/sitemap.xml"], | ||
"sitemap_alternate_links": true, | ||
"stop_urls": [], | ||
"selectors": { | ||
"default": { | ||
"lvl0": { | ||
"selector": "a[data-breadcrumb=\"0\"]", | ||
"global": true, | ||
"default_value": "All docs" | ||
"selector": "a[data-breadcrumb=\"0\"]", | ||
"global": true, | ||
"default_value": "All docs" | ||
}, | ||
"lvl1": "h1", | ||
"lvl2": "h2", | ||
"lvl3": "h3", | ||
"lvl4": "h4", | ||
"lvl5": "h5", | ||
"lvl6": "h6", | ||
"text": "p, li, pre, td" | ||
"text": "p, li, pre, td", | ||
"code": { | ||
"selector": "pre > code", | ||
"global": true | ||
} | ||
} | ||
}, | ||
"strip_chars": " .,;:#", | ||
"custom_settings": { | ||
"separatorsToIndex": "_", | ||
"attributesForFaceting": [ | ||
"type", | ||
"lang" | ||
], | ||
"attributesToRetrieve": [ | ||
"hierarchy", | ||
"text", | ||
"anchor", | ||
"url" | ||
] | ||
"attributesForFaceting": ["type", "lang"], | ||
"attributesToRetrieve": ["hierarchy", "text", "anchor", "url"] | ||
} | ||
} |
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
Oops, something went wrong.