Skip to content

Commit 86a7501

Browse files
authoredJan 8, 2025··
Merge pull request #220 from neuroglia-io/migration-astro
Migration to Astro
2 parents b02a074 + 37d070c commit 86a7501

File tree

189 files changed

+8811
-1230
lines changed

Some content is hidden

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

189 files changed

+8811
-1230
lines changed
 

‎.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
node_modules
3+
dist

‎.gitignore

+18-16
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/

0 commit comments

Comments
 (0)
Please sign in to comment.