Skip to content

Commit af305e9

Browse files
committed
Merge branch 'release/v1.0.0'
2 parents 264f784 + f145347 commit af305e9

File tree

135 files changed

+25856
-0
lines changed

Some content is hidden

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

135 files changed

+25856
-0
lines changed

.dockerignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Git
2+
.git
3+
.gitignore
4+
5+
# Documentation
6+
README.md
7+
docs/
8+
*.md
9+
10+
# Development files
11+
.env
12+
.env.local
13+
.env.*.local
14+
15+
# IDE files
16+
.vscode/
17+
.idea/
18+
*.swp
19+
*.swo
20+
*~
21+
22+
# OS files
23+
.DS_Store
24+
Thumbs.db
25+
26+
# Build artifacts
27+
bin/
28+
dist/
29+
*.exe
30+
31+
# Test files
32+
*_test.go
33+
testdata/
34+
35+
# Docker files
36+
Dockerfile*
37+
docker-compose*.yml
38+
.dockerignore
39+
40+
# CI/CD
41+
.github/
42+
.gitlab-ci.yml
43+
.travis.yml
44+
45+
# Logs
46+
*.log
47+
logs/
48+
49+
# Temporary files
50+
tmp/
51+
temp/
52+
53+
# Node modules (if any)
54+
node_modules/
55+
56+
# Coverage reports
57+
coverage.out
58+
*.cover
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: '[BUG] '
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
16+
1. Go to '...'
17+
2. Click on '....'
18+
3. Scroll down to '....'
19+
4. See error
20+
21+
**Expected behavior**
22+
A clear and concise description of what you expected to happen.
23+
24+
**Actual behavior**
25+
A clear and concise description of what actually happened.
26+
27+
**Screenshots/Logs**
28+
If applicable, add screenshots or log output to help explain your problem.
29+
30+
**Environment (please complete the following information):**
31+
32+
- OS: [e.g. macOS, Linux, Windows]
33+
- Go version: [e.g. 1.24.3]
34+
- Docker version (if using Docker): [e.g. 20.10.8]
35+
- Database version: [e.g. PostgreSQL 16]
36+
37+
**GraphQL Query/Mutation (if applicable)**
38+
39+
```graphql
40+
# Paste your GraphQL query/mutation here
41+
```
42+
43+
**Configuration**
44+
45+
```yaml
46+
# Paste relevant configuration here (remove sensitive data)
47+
```
48+
49+
**Additional context**
50+
Add any other context about the problem here.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: '[FEATURE] '
5+
labels: 'enhancement'
6+
assignees: ''
7+
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+
**Use case**
20+
Describe the use case for this feature. How would it be used? Who would benefit from it?
21+
22+
**GraphQL Schema Changes (if applicable)**
23+
24+
```graphql
25+
# Paste proposed schema changes here
26+
```
27+
28+
**Implementation ideas**
29+
If you have ideas on how this could be implemented, please share them here.
30+
31+
**Additional context**
32+
Add any other context, screenshots, or examples about the feature request here.

.github/pull_request_template.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Pull Request
2+
3+
## Description
4+
5+
Brief description of the changes made in this PR.
6+
7+
## Type of Change
8+
9+
- [ ] Bug fix (non-breaking change which fixes an issue)
10+
- [ ] New feature (non-breaking change which adds functionality)
11+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
- [ ] Documentation update
13+
- [ ] Code refactoring
14+
- [ ] Performance improvement
15+
- [ ] Test improvements
16+
17+
## Changes Made
18+
19+
- List the main changes made in this PR
20+
- Include any new files, modified files, or deleted files
21+
- Mention any configuration changes
22+
23+
## Testing
24+
25+
- [ ] Unit tests pass (`make test`)
26+
- [ ] Integration tests pass (`make test-integration`)
27+
- [ ] Code coverage maintained or improved
28+
- [ ] Manual testing completed
29+
30+
Describe the testing that was performed:
31+
32+
## GraphQL Changes (if applicable)
33+
34+
- [ ] Schema changes are backward compatible
35+
- [ ] New queries/mutations are documented
36+
- [ ] Examples added to `examples/graphql/`
37+
38+
## Documentation
39+
40+
- [ ] Code is self-documenting with appropriate comments
41+
- [ ] README updated (if needed)
42+
- [ ] API documentation updated (if needed)
43+
- [ ] Architecture documentation updated (if needed)
44+
45+
## Checklist
46+
47+
- [ ] Code follows the project's coding standards
48+
- [ ] Self-review of the code completed
49+
- [ ] No sensitive information (passwords, keys, etc.) included
50+
- [ ] Commit messages follow conventional commit format
51+
- [ ] All CI checks pass
52+
- [ ] Requested reviewers assigned
53+
54+
## Breaking Changes
55+
56+
If this PR introduces breaking changes, describe them here and provide migration instructions.
57+
58+
## Additional Notes
59+
60+
Any additional information that reviewers should know about this PR.

.kiro/settings/mcp.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"mcpServers": {
3+
}
4+
}

0 commit comments

Comments
 (0)