Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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/
38 changes: 25 additions & 13 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,34 @@
### ℹ️ 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:**
<!-- Describe how you tested this change -->
<!-- E.g., automated tests run, manual testing steps taken -->

Provide screenshots of any new components, styling changes, or pages.
## Screenshots (if relevant)

### 🏕️ (Optional) Future Work / Notes
<!-- Add screenshots for UI changes, new features, or before/after comparisons -->

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!
## 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