Skip to content

Commit 50f2e05

Browse files
committed
Migrated website to Astro
Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent b02a074 commit 50f2e05

File tree

190 files changed

+8589
-1254
lines changed

Some content is hidden

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

190 files changed

+8589
-1254
lines changed

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
node_modules
3+
dist

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/website.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/OWNERS

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.gitignore

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1+
# build output
2+
dist/
3+
4+
# generated types
5+
.astro/
6+
7+
# dependencies
18
node_modules/
2-
package-lock.json
3-
/tmp
49

5-
# Hugo
6-
.hugo_build.lock
7-
/public
8-
resources/
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
915

10-
# vim temporary files
11-
*~
12-
*.sw?
16+
# environment variables
17+
.env
18+
.env.production
1319

14-
# system files
20+
# macOS-specific files
1521
.DS_Store
1622

17-
# IDE files
18-
.idea
19-
20-
# VS Code
21-
/.vscode/**
22-
!/.vscode/cspell.json
23+
# jetbrains setting folder
24+
.idea/

.gitpod.Dockerfile

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitpod.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
image:
2-
file: .gitpod.Dockerfile
3-
4-
# List the start up tasks. You can start them in parallel in multiple terminals.
5-
# https://www.gitpod.io/docs/config-start-tasks/
61
tasks:
7-
- command: python3 -m http.server
8-
9-
# List the ports you want to expose and what to do when they are served.
10-
# https://www.gitpod.io/docs/config-ports/
2+
- init: npm install
3+
command: npm run dev
4+
115
ports:
12-
- port: 8080
13-
onOpen: open-preview
6+
- port: 4321
7+
onOpen: open-browser
148

159
# Enable prebuilds of your project to enable faster workspace start times.
1610
# https://www.gitpod.io/docs/prebuilds/#configure-the-github-app

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20.11.1

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

0 commit comments

Comments
 (0)