-
Notifications
You must be signed in to change notification settings - Fork 0
Tier 0 backend feature rollout and deployment updates #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sumit1642
wants to merge
57
commits into
main
Choose a base branch
from
tier0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
57 commits
Select commit
Hold shift + click to select a range
712ea4b
chore: update .gitignore to include .env.render and remove .env.test
sumit1642 8e4eee2
feat: add support for brevo-api email provider and enhance environmen…
sumit1642 2e761d5
feat: implement Brevo API email provider for OTP and verification emails
sumit1642 a455c74
feat: add CI workflow for tier0 branch with Node.js setup and depende…
sumit1642 06b0ae1
feat: add registration and OTP verification tests for students and PG…
sumit1642 7940d27
feat: update Node.js version to 24.15.0 in CI workflow
sumit1642 e1a6f2d
Refactor code structure for improved readability and maintainability
sumit1642 7cff913
FEATURE: Added docs in structred mode.
sumit1642 15c7cf9
feat: enhance API documentation with auth/authz matrix and service co…
sumit1642 341fd30
feat: add frontend TypeScript/Zod type guide and update API documenta…
sumit1642 9155ec7
Refactor code structure for improved readability and maintainability
sumit1642 71bc53a
Add comprehensive middleware and workers/crons documentation
sumit1642 2e64cba
chore: remove outdated QA audit findings documentation and add compre…
sumit1642 8653f50
feat: enhance CORS and cookie handling for cross-origin requests
sumit1642 c33d641
feat: add amenities endpoint and integrate with routing
sumit1642 298da0a
chore: clean up comments and improve code readability across multiple…
sumit1642 01bb881
Remove outdated documentation files for Tier 2 deployment guide, proj…
sumit1642 d20d591
Unwatned Comments Removed.
sumit1642 7281c2c
chore: remove unnecessary whitespace and clean up code formatting in …
sumit1642 c569478
chore: clean up code by removing unnecessary whitespace and improving…
sumit1642 0d3e6f9
Refactor and optimize various services and middleware
sumit1642 19b3950
refactor: improve hard delete cleanup process and error handling for …
sumit1642 1518974
What's being built:
sumit1642 fc854ee
feat: add listing renewal functionality with handler and service
sumit1642 ec02e96
feat: implement listing analytics service and handler
sumit1642 8cbca52
refactor: clean up code structure and improve readability across mult…
sumit1642 fb94927
feat: add sorting functionality to search listings by compatibility
sumit1642 3ccfaf0
feat: add sorting option to search listings schema
sumit1642 b62e2c2
feat: implement saved searches functionality with CRUD operations and…
sumit1642 947f9c6
feat: add rent index controller, service, and routes
sumit1642 ae01617
feat: add rent index validation schema and notification for saved sea…
sumit1642 ce6d142
feat: remove outdated roommate matching and rent system design documents
sumit1642 e57a71a
feat: enhance roommate and rent index functionalities with improved c…
sumit1642 aa66f8e
Merge pull request #38 from sumit1642/tier0recommendation
sumit1642 efce0df
postman
sumit1642 12172df
fixNeeded
sumit1642 033602e
feat: remove implementation plan and task tracker for TanStack Query …
sumit1642 191be5c
fix: reduce max connections in pg pool from 20 to 5 for better resour…
sumit1642 6279200
feat: add saved search routes to the root router
sumit1642 a36b115
feat: enhance searchListings with improved geolocation handling and r…
sumit1642 36d0291
feat: add verification and report routes with admin access control
sumit1642 e4e207d
Implemented Admin Routes
sumit1642 8f58e26
delete unimplemented features audit document; it contained outdated i…
sumit1642 5214e7a
feat: enhance database connection pool configuration and add validati…
sumit1642 c54adec
feat: update deployment(tier0) documentation with new environment va…
sumit1642 887a0aa
Refactor: Remove unnecessary whitespace and comments across multiple …
sumit1642 6924138
feat: add missing PostGIS extensions to initial schema
sumit1642 8e5dd22
refactor: remove outdated comments from AzureBlobAdapter implementation
sumit1642 31f5200
Fix listing ranking and saved search scaling
sumit1642 c07d254
Update saved search alert timestamp after enqueue
sumit1642 d9c6d39
Merge pull request #39 from sumit1642/fix/listing-ranking-saved-searc…
sumit1642 a5b3238
Update .github/workflows/ci.yml
sumit1642 75de44a
Update .github/workflows/ci.yml
sumit1642 10b9cf3
Add migrations to fix rent observation trigger and roommate blocks co…
sumit1642 236fa58
Refactor various services and controllers for improved error handling…
sumit1642 9f0d8e1
Refactor migrations to enhance data integrity and indexing:
sumit1642 b0dde47
Merge pull request #41 from sumit1642/fix/tier0
sumit1642 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [tier0] | ||
| pull_request: | ||
| branches: [tier0] | ||
|
|
||
| concurrency: | ||
| group: ci-${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| check: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
sumit1642 marked this conversation as resolved.
|
||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - name: Setup Node.js 24.15.0 | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "24.15.0" | ||
| cache: "npm" | ||
|
sumit1642 marked this conversation as resolved.
|
||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.