Skip to content

Commit 923b9a5

Browse files
committed
remove useless top level repository
1 parent 074a566 commit 923b9a5

File tree

1,579 files changed

+39
-33
lines changed

Some content is hidden

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

1,579 files changed

+39
-33
lines changed

.github/workflows/build_doc.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- name: Use Node.js 18.x
15-
uses: actions/setup-node@v3
13+
- uses: actions/checkout@v4
14+
- name: Use Node.js 20.x
15+
uses: actions/setup-node@v4
1616
with:
17-
node-version: 18.x
17+
node-version: 20
1818
- name: Install dependencies
1919
run: npm ci
20-
working-directory: ./crowdsec-docs/
2120
- run: npm run build --if-present
22-
working-directory: ./crowdsec-docs/

.gitignore

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

amplify.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 1
2+
frontend:
3+
phases:
4+
build:
5+
commands:
6+
- nvm use 20
7+
- npm install
8+
- npm run build
9+
artifacts:
10+
baseDirectory: build
11+
files:
12+
- "**/*"
13+
cache:
14+
paths:
15+
- node_modules/**/*
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)