Skip to content

Commit 1f61bd8

Browse files
committed
init astro pure
1 parent 34ec5f5 commit 1f61bd8

197 files changed

Lines changed: 22381 additions & 0 deletions

File tree

Some content is hidden

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

.github/ISSUE_TEMPLATE/01_bug.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: "\U0001F41B Bug report"
2+
description: Report an issue or possible bug
3+
labels: ['bug']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Quick Checklist
9+
Thank you for taking the time to file a bug report! Please fill out this form as completely as possible.
10+
11+
✅ I am using the **latest version of `astro-theme-pure`** and all plugins.
12+
✅ I am using a version of Node that Astro supports (`v18.17.1` or `v20.3.0` or higher.)
13+
- type: textarea
14+
id: environment-auto-check
15+
attributes:
16+
label: Run command like `bun astro-pure info`, `bun astro info`
17+
description: Paste your auto check command information.
18+
- type: textarea
19+
id: bug-description
20+
attributes:
21+
label: Describe the Bug
22+
description: A clear and concise description of what the bug is.
23+
validations:
24+
required: true
25+
- type: input
26+
id: browser
27+
attributes:
28+
label: If this issue only occurs in one browser, which browser is a problem?
29+
placeholder: Chrome, Firefox, Safari
30+
- type: checkboxes
31+
id: will-pr
32+
attributes:
33+
label: Participation
34+
options:
35+
- label: I am willing to submit a pull request for this issue.
36+
required: false
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: 💡 Feature
2+
description: Suggest a new feature or improvement.
3+
labels: ['enhancement']
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Description
9+
description: A summary of the feature or improvement you are suggesting.
10+
validations:
11+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 👾 Chat
4+
url: https://t.me/astro_pure
5+
about: Chat with the community on Telegram
6+
- name: 📘 Documentation
7+
url: https://astro-pure.js.org/docs
8+
about: Checkout the documentation for more information
9+
- name: 💁 Discussion
10+
url: https://github.com/cworld1/astro-theme-pure/discussions
11+
about: 'This issue tracker is not for support questions. Leave a comment on the discussion board if you need help.'

.github/assets/body.webp

378 KB
Loading

.github/assets/header.webp

62.2 KB
Loading
18.5 KB
Loading

.gitignore

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/astro,vim,visualstudiocode,vercel
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=astro,vim,visualstudiocode,vercel
3+
4+
### Astro ###
5+
# Gitignore template for Astro projects
6+
# Ignore content collection generated files
7+
.astro
8+
9+
### Vercel ###
10+
.vercel
11+
12+
### Vim ###
13+
# Swap
14+
[._]*.s[a-v][a-z]
15+
!*.svg # comment out if you don't need vector files
16+
[._]*.sw[a-p]
17+
[._]s[a-rt-v][a-z]
18+
[._]ss[a-gi-z]
19+
[._]sw[a-p]
20+
21+
# Session
22+
Session.vim
23+
Sessionx.vim
24+
25+
# Temporary
26+
.netrwhist
27+
*~
28+
# Persistent undo
29+
[._]*.un~
30+
31+
### VisualStudioCode ###
32+
.vscode/*
33+
!.vscode/settings.json
34+
!.vscode/tasks.json
35+
!.vscode/launch.json
36+
!.vscode/extensions.json
37+
!.vscode/*.code-snippets
38+
39+
# Local History for Visual Studio Code
40+
.history/
41+
42+
# Built Visual Studio Code Extensions
43+
*.vsix
44+
45+
### VisualStudioCode Patch ###
46+
# Ignore all local history of files
47+
.history
48+
.ionide
49+
50+
# End of https://www.toptal.com/developers/gitignore/api/astro,vim,visualstudiocode,vercel
51+
52+
### Custom ###
53+
54+
# ides
55+
*.code-workspace
56+
57+
# build output
58+
dist/
59+
.astro/
60+
.vercel/
61+
# logs
62+
npm-debug.log*
63+
yarn-debug.log*
64+
yarn-error.log*
65+
pnpm-debug.log*
66+
67+
# dependencies
68+
node_modules/
69+
70+
# environment variables
71+
.env
72+
.env.production
73+
74+
# others
75+
.DS_Store
76+
old_blog
77+
ignore.*
78+
bunfig.toml
79+
/src/content/blog/test.*
80+
/test/

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/**
2+
src/icons/**
3+
public/scripts/*

.vscode/extensions.json

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

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

0 commit comments

Comments
 (0)