Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ed4d044
docker setup + docs
thaninbew Sep 13, 2025
b30e1c0
Merge branch 'main' of https://github.com/Code-4-Community/fcc
thaninbew Sep 13, 2025
38cd27e
hot reloading
thaninbew Sep 14, 2025
a75f791
new PR template
thaninbew Sep 14, 2025
248d0be
update pr pull_request_template
thaninbew Sep 14, 2025
031d549
fix migrate command
thaninbew Sep 15, 2025
4f28b32
fix proxy file
thaninbew Sep 15, 2025
0a675a9
fix docker command
thaninbew Sep 16, 2025
1a3dfb8
added dtos and normalization helpers
GauriRajesh733 Sep 22, 2025
36939ba
added dtos and normalization helpers
GauriRajesh733 Sep 22, 2025
0c4e0af
Initialized donation entity
SamNie2027 Sep 22, 2025
6ec8950
Merging main's changes
SamNie2027 Sep 22, 2025
f5383e7
Update data-source.ts with donation entity
SamNie2027 Sep 25, 2025
18b0727
Merge branch 'main' into 4-Database-schema-and-migration
SamNie2027 Sep 26, 2025
8e594f5
Add donations migration
SamNie2027 Sep 26, 2025
6a868bd
feat(donations): add donation DTOs and mappers
benjaspet Sep 29, 2025
ba9e67c
PR changes
SamNie2027 Sep 29, 2025
cb870fb
static normalization helper corretions
GauriRajesh733 Sep 29, 2025
bb91568
static normalization helper corrections
GauriRajesh733 Sep 29, 2025
d43275a
Merge branch 'gr-donations-service-domain-dtos' of https://github.com…
GauriRajesh733 Sep 29, 2025
f9be42d
Merge pull request #13 from Code-4-Community/4-Database-schema-and-mi…
thaninbew Sep 29, 2025
5b2ff5c
utils functions
GauriRajesh733 Sep 29, 2025
71360d4
Merge pull request #12 from Code-4-Community/gr-donations-service-dom…
thaninbew Sep 29, 2025
a795ff9
test
thaninbew Sep 30, 2025
24b2cc2
Merge branch 'main' into feat-10-donations-controller-dtos
thaninbew Sep 30, 2025
a18ddd3
Make fields consistent with latest commits
thaninbew Sep 30, 2025
db0c8de
fix recurringInterval mismatch
thaninbew Sep 30, 2025
1f25a31
Merge pull request #14 from Code-4-Community/feat-10-donations-contro…
thaninbew Sep 30, 2025
0f5c2a6
test
GauriRajesh733 Oct 1, 2025
dadf849
reinstalled node
GauriRajesh733 Oct 1, 2025
7aacd88
Merge branch 'main' into gr-donations-service-domain-dtos
GauriRajesh733 Oct 9, 2025
c294e31
service functions and unit testing
GauriRajesh733 Oct 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 126 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env.local
.env.production

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Nx generated files
.nx/cache
.nx/workspace-data

# Build outputs
dist/
build/
tmp/

# IDE files
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Git
.git
.gitignore
README.md

# Docker
.dockerignore
Dockerfile
docker-compose*.yml

# Database files
*.sqlite
*.db

# Test files and coverage
coverage/
.nyc_output/
test-results/
playwright-report/

# Storybook
storybook-static/

# Cypress
cypress/videos/
cypress/screenshots/

# Temporary files
*.tmp
temp/
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
Expand Down
39 changes: 26 additions & 13 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,35 @@
### ℹ️ Issue
## Description

Closes <issue>
Briefly describe the changes and why they are needed.

### 📝 Description
## Changes Made

Write a short summary of what you added. Why is it important? Any member of C4C should be able to read this and understand your contribution -- not just your team members.
- [ ] Backend changes
- [ ] Frontend changes
- [ ] Database schema changes
- [ ] Configuration updates
- [ ] Other

Briefly list the changes made to the code:
1. Added support for this.
2. And removed redunant use of that.
3. Also this was included for reasons.
## Testing & Verification

### ✔️ Verification
- [ ] Unit tests pass
- [ ] Manual testing completed
- [ ] No breaking changes

What steps did you take to verify your changes work? These should be clear enough for someone to be able to clone the branch and follow the steps themselves.
**Verification Steps:**

Provide screenshots of any new components, styling changes, or pages.
<!-- Describe how you tested this change -->
<!-- E.g., automated tests run, manual testing steps taken -->

### 🏕️ (Optional) Future Work / Notes
## Screenshots (if relevant)

Did you notice anything ugly during the course of this ticket? Any bugs, design challenges, or unexpected behavior? Write it down so we can clean it up in a future ticket!
<!-- Add screenshots for UI changes, new features, or before/after comparisons -->

## Future Improvements/Notes

<!-- Optional: Any refactoring needed or features for future PRs. Notes---anything to be aware of?-->
<!-- E.g., code that could be cleaned up, new features to implement -->

## Related Issues

Closes #
Loading
Loading