Skip to content

Commit 0810c74

Browse files
committedOct 15, 2024·
Initial commit
0 parents  commit 0810c74

File tree

159 files changed

+21776
-0
lines changed

Some content is hidden

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

159 files changed

+21776
-0
lines changed
 

‎.github/workflows/algolia.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# generate a workflow that triggers in push to main
2+
name: Algolia Re-crawler
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
workflow_dispatch:
9+
10+
jobs:
11+
algolia_recrawl:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Sleep for 120s
15+
run: sleep 120
16+
- name: Algolia crawler creation and crawl
17+
uses: algolia/algoliasearch-crawler-github-actions@v1.0.10
18+
id: algolia_crawler
19+
with: # mandatory parameters
20+
crawler-user-id: ${{ secrets.CRAWLER_USER_ID }}
21+
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }}
22+
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }}
23+
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }}
24+
crawler-name: coderabbit
25+
site-url: "https://docs.coderabbit.ai"

‎.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Editors
2+
.idea
3+
# Dependencies
4+
/node_modules
5+
6+
# Production
7+
/build
8+
9+
# Generated files
10+
.docusaurus
11+
.cache-loader
12+
13+
# Misc
14+
.DS_Store
15+
.env.local
16+
.env.development.local
17+
.env.test.local
18+
.env.production.local
19+
20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*
23+
yarn.lock

0 commit comments

Comments
 (0)
Please sign in to comment.