Skip to content

Commit f82aacf

Browse files
committed
Release: v1.0.1
0 parents  commit f82aacf

Some content is hidden

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

68 files changed

+14921
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
3+
name: 🐞 Bug Report
4+
description: File a bug report
5+
title: '[Bug]: '
6+
labels: ['bug']
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
- type: textarea
13+
id: what-happened
14+
attributes:
15+
label: What happened?
16+
description: Also tell us, what did you expect to happen?
17+
placeholder: Add descriptions
18+
value: 'Briefly Describe the bug you found'
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: screenshots
23+
attributes:
24+
label: Add screenshots
25+
description: Add screenshots to see the problems
26+
placeholder: Add screenshots
27+
value: 'Add screenshots'
28+
- type: dropdown
29+
id: browsers
30+
attributes:
31+
label: What browsers are you seeing the problem on?
32+
multiple: true
33+
options:
34+
- Firefox
35+
- Chrome
36+
- Safari
37+
- Microsoft Edge
38+
- Brave
39+
- Other
40+
- type: checkboxes
41+
id: self-grab
42+
attributes:
43+
label: Self - Grab
44+
description: By checking this box, you can fix this bug
45+
options:
46+
- label: I would like to work on this issue
47+
id: terms
48+
attributes:
49+
label: Code of Conduct
50+
description: By submitting this issue, you agree to follow our Code of Conduct
51+
options:
52+
- label: I agree to follow this project's Code of Conduct
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
---
3+
name: Feature request
4+
about: Suggest an idea for this project
5+
title: ''
6+
labels: ''
7+
assignees: ''
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/style.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
3+
name: 👯‍♂️ Style Changing Request
4+
description: Suggest a style designs
5+
title: '[style]: '
6+
labels: ['enhancement']
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this template!
12+
- type: textarea
13+
id: style-idea
14+
attributes:
15+
label: What's the style idea?
16+
placeholder: Add descriptions
17+
value: 'We need to improve '
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: screenshots
22+
attributes:
23+
label: Add screenshots
24+
description: Add screenshots to see the demo
25+
placeholder: Add screenshots
26+
value: 'Add screenshots'
27+
- type: checkboxes
28+
id: terms
29+
attributes:
30+
label: Code of Conduct
31+
description: By submitting this issue, you agree to follow our Code of Conduct
32+
options:
33+
- label: I agree to follow this project's Code of Conduct

.github/pull_request_template.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
<!-- If your PR fixes an open issue, use `Closes #999` to link your PR with the issue. #999 stands for the issue number you are fixing -->
3+
4+
## Fixes Issue
5+
6+
<!-- Remove this section if not applicable -->
7+
8+
<!-- Example: Closes #31 -->
9+
10+
## Changes proposed
11+
12+
<!-- List all the proposed changes in your PR -->
13+
14+
<!-- Mark all the applicable boxes. To mark the box as done follow the following conventions -->
15+
<!--
16+
[x] - Correct; marked as done
17+
[X] - Correct; marked as done
18+
19+
[ ] - Not correct; marked as **not** done
20+
-->
21+
22+
## Check List (Check all the applicable boxes) <!-- Follow the above conventions to check the box -->
23+
24+
- [ ] My Changes follow the Code of Conduct of this Project.
25+
- [ ] My Post or Change does not contain any **Plagarized** Content.
26+
- [ ] The title of the PR is a short description of the Changes made.
27+
28+
## Note to reviewers
29+
30+
<!-- Add notes to reviewers if applicable -->

.github/workflows/greetings.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
name: Greetings
3+
4+
on:
5+
pull_request:
6+
types: [opened]
7+
issues:
8+
types: [opened]
9+
10+
permissions:
11+
issues: write
12+
pull-requests: write
13+
14+
jobs:
15+
greet:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Greet on PRs and Issues
19+
uses: actions/github-script@v7
20+
with:
21+
script: |
22+
try {
23+
const isPR = context.payload.pull_request !== undefined;
24+
const number = isPR ? context.payload.pull_request.number : context.payload.issue.number;
25+
const commentBody = isPR
26+
? `Welcome, @${{ github.actor }}! Thanks for raising the issue!`
27+
: `Great job, @${{ github.actor }}! Thanks for creating the pull request`;
28+
29+
await github.rest.issues.createComment({
30+
owner: context.repo.owner,
31+
repo: context.repo.repo,
32+
issue_number: number,
33+
body: commentBody
34+
});
35+
36+
console.log('Comment successfully created.');
37+
} catch (error) {
38+
console.error('Error creating comment:', error);
39+
// Do not mark the step as failed; continue with the workflow.
40+
}

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# build output
2+
dist/
3+
4+
# generated types
5+
.astro/
6+
7+
# dependencies
8+
node_modules/
9+
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# local folders
24+
.history

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"plugins": [
3+
"prettier-plugin-astro",
4+
"prettier-plugin-tailwindcss"
5+
]
6+
}

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

.vscode/tasks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "dev",
7+
"runOptions": {
8+
"runOn": "folderOpen"
9+
},
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)