-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
2,635 additions
and
13,712 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,5 @@ pnpm-debug.log* | |
!.yarn/sdks | ||
!.yarn/versions | ||
.pnp.* | ||
|
||
/.husky/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"Frontmatter": { | ||
"scope": "markdown", | ||
"prefix": "frontmatter", | ||
"body": [ | ||
"---", | ||
"author: $1", | ||
"pubDatetime: $CURRENT_YEAR-$CURRENT_MONTH-${CURRENT_DATE}T$CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND.000$CURRENT_TIMEZONE_OFFSET", | ||
"modDatetime: $3", | ||
"title: $4", | ||
"featured: ${5|false,true|}", | ||
"draft: ${6|true,false|}", | ||
"tags:", | ||
" - $7", | ||
"description: $8", | ||
"---", | ||
], | ||
"description": "Adds the frontmatter block for the AstroPaper Blog post" | ||
}, | ||
"Blog Template": { | ||
"scope": "markdown", | ||
"prefix": "template", | ||
"body": [ | ||
"${1:frontmatter}", | ||
"", | ||
"${2: Introductory Sentence}", | ||
"", | ||
"## Table of contents", | ||
"", | ||
"## ${3: heading 1}", | ||
], | ||
"description": "Adds the template for the AstroPaper Blog post. You will need to trigger the snippet modal on the 'frontmatter' line to insert the other snipper." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"recommendations": ["astro-build.astro-vscode"], | ||
"unwantedRecommendations": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "./node_modules/.bin/astro dev", | ||
"name": "Development server", | ||
"request": "launch", | ||
"type": "node-terminal" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: '3' | ||
|
||
services: | ||
app: | ||
image: node:18 | ||
ports: | ||
- 4321:4321 | ||
working_dir: /app | ||
command: npm run dev -- --host 0.0.0.0 | ||
volumes: | ||
- ./:/app |
Oops, something went wrong.