Skip to content

Commit 3e89305

Browse files
committed
Add documentation
1 parent 5dcebe2 commit 3e89305

File tree

91 files changed

+7698
-3515
lines changed

Some content is hidden

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

91 files changed

+7698
-3515
lines changed

.gitignore

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,21 @@
1-
# Composer Related
2-
composer.lock
3-
/vendor
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
45

5-
# Frontend Assets
6-
/node_modules
6+
# dependencies
7+
node_modules/
78

8-
# Logs
9-
npm-debug.log
10-
yarn-error.log
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
1114

12-
# Caches
13-
.phpunit.cache
14-
.phpunit.result.cache
15-
/build
1615

17-
# IDE Helper
18-
_ide_helper.php
19-
_ide_helper_models.php
20-
.phpstorm.meta.php
16+
# environment variables
17+
.env
18+
.env.production
2119

22-
# Editors
23-
/.idea
24-
/.fleet
25-
/.vscode
26-
27-
# Misc
28-
phpunit.xml
29-
phpstan.neon
30-
testbench.yaml
31-
/docs
32-
/coverage
20+
# macOS-specific files
21+
.DS_Store

.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+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

CHANGELOG.md

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

0 commit comments

Comments
 (0)