Skip to content

Commit

Permalink
Merge branch 'main' into feat/211/file-size-check-middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirAgassi authored Dec 18, 2024
2 parents 16e71d7 + 61d9792 commit 65b4652
Show file tree
Hide file tree
Showing 12 changed files with 69 additions and 20 deletions.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/02-feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Feature
about: An addition, change, or refactor to the backend AND frontend.
title: "[Feat] Describe what to add here"
labels: backend, frontend, enhancement
assignees: ''

---

## Checklist
Before submitting this ticket, make sure this ticket:
- [ ] Is **labelled properly** - if this is a refactor, add the label!
- [ ] Has the **SPUR project assigned to it**.
- [ ] Has an **assigned milestone**.

And lastly:
- [ ] Once someone picks up this ticket, **make sure to assign it**.

## Description
Replace this text with a brief description of the feature.

## Screenshots
If applicable add screenshots, otherwise delete this section.

## Additional Information
If applicable add any other information, otherwise, delete this section.
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/03-bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Issue, Bug, or Error
about: A bug pertaining to the backend AND frontend.
title: "[Bug] Describe what to fix here"
labels: backend, frontend, bug
assignees: ''

---

## Checklist
Before submitting this ticket, make sure this ticket:
- [ ] Is **labelled properly**.
- [ ] Has the **SPUR project assigned to it**.
- [ ] Has an **assigned milestone**.

And lastly:
- [ ] Once someone picks up this ticket, **make sure to assign it to a developer**.

## Description
Replace this text with a brief description of the issue.

## Reproduction
1. Replace this with a list of steps to reproduce the issue.
2. ...

## Screenshots
If applicable add screenshots, otherwise delete this section.

## Additional Information
If applicable add any other information, otherwise, delete this section.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Backend Issue
about: An issue pertaining to the backend (routes, middleware, database, or funding).
title: "[BE Issue] Describe what to fix here"
name: Backend Issue, Bug, or Error
about: A bug pertaining to the backend (routes, middleware, database, or funding).
title: "[BE Bug] Describe what to fix here"
labels: backend, bug
assignees: ''

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Frontend Issue
about: An issue pertaining to the frontend.
title: "[FE Issue] Describe what to fix here"
name: Frontend Issue, Bug, or Error
about: A bug pertaining to the frontend.
title: "[FE Bug] Describe what to fix here"
labels: bug, frontend
assignees: ''

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: UI Issue
about: An issue pertaining to the Figma UI design file.
title: "[UI Feat] Describe what to fix here"
name: UI Issue, Bug, or Error
about: A bug pertaining to the Figma UI design file.
title: "[UI Bug] Describe what to fix here"
labels: bug, design
assignees: ''

Expand Down
File renamed without changes.
File renamed without changes.
12 changes: 2 additions & 10 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
## Checklist
Before opening this PR, make sure the PR:
- [ ] Has an **assignee or group of assignees**.
- [ ] Has a **reviewer or a group of reviewers**.
- [ ] Is **labelled properly**.
- [ ] Has the **SPUR project assigned to it**.
- [ ] Has an **assigned milestone**.

Additionally, make sure that:
- [ ] My code follows the style guidelines of this project.
- [ ] I have performed a self-review of my code.
- [ ] I have commented my code, particularly in hard-to-understand areas.
- [ ] I have made corresponding changes to the documentation.
- [ ] My changes generate no new warnings.
Expand All @@ -21,13 +20,6 @@ Replace this with a summary of the changes and the related issues. Please also i
## Linked Issues
- Fixes # (add all issues that this PR closes, prefixed with either "Fixes" or "Closes").

## Type of Change
Please delete options that are not relevant:
- [ ] Bug fix (non-breaking change which fixes an issue).
- [ ] New feature (non-breaking change which adds functionality).
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected).
- [ ] This change requires a documentation update.

## Testing
- Replace this with a list of test files that cover all the changes in this PR.
- Replace this with a list of test files covering all the PR changes.
- ...
3 changes: 2 additions & 1 deletion backend/.sqlc/migrations/20241215194302_initial_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ CREATE TYPE project_status AS ENUM (
'draft',
'pending',
'verified',
'declined'
'declined',
'withdrawn'
);

CREATE TABLE IF NOT EXISTS users (
Expand Down

0 comments on commit 65b4652

Please sign in to comment.