Skip to content
Open
Show file tree
Hide file tree
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 Apr 20, 2026
8e4eee2
feat: add support for brevo-api email provider and enhance environmen…
sumit1642 Apr 20, 2026
2e761d5
feat: implement Brevo API email provider for OTP and verification emails
sumit1642 Apr 20, 2026
a455c74
feat: add CI workflow for tier0 branch with Node.js setup and depende…
sumit1642 Apr 20, 2026
06b0ae1
feat: add registration and OTP verification tests for students and PG…
sumit1642 Apr 20, 2026
7940d27
feat: update Node.js version to 24.15.0 in CI workflow
sumit1642 Apr 20, 2026
e1a6f2d
Refactor code structure for improved readability and maintainability
sumit1642 Apr 20, 2026
7cff913
FEATURE: Added docs in structred mode.
sumit1642 Apr 20, 2026
15c7cf9
feat: enhance API documentation with auth/authz matrix and service co…
sumit1642 Apr 20, 2026
341fd30
feat: add frontend TypeScript/Zod type guide and update API documenta…
sumit1642 Apr 20, 2026
9155ec7
Refactor code structure for improved readability and maintainability
sumit1642 Apr 21, 2026
71bc53a
Add comprehensive middleware and workers/crons documentation
sumit1642 Apr 21, 2026
2e64cba
chore: remove outdated QA audit findings documentation and add compre…
sumit1642 Apr 21, 2026
8653f50
feat: enhance CORS and cookie handling for cross-origin requests
sumit1642 Apr 21, 2026
c33d641
feat: add amenities endpoint and integrate with routing
sumit1642 Apr 22, 2026
298da0a
chore: clean up comments and improve code readability across multiple…
sumit1642 Apr 24, 2026
01bb881
Remove outdated documentation files for Tier 2 deployment guide, proj…
sumit1642 Apr 24, 2026
d20d591
Unwatned Comments Removed.
sumit1642 Apr 24, 2026
7281c2c
chore: remove unnecessary whitespace and clean up code formatting in …
sumit1642 Apr 24, 2026
c569478
chore: clean up code by removing unnecessary whitespace and improving…
sumit1642 Apr 25, 2026
0d3e6f9
Refactor and optimize various services and middleware
sumit1642 Apr 26, 2026
19b3950
refactor: improve hard delete cleanup process and error handling for …
sumit1642 Apr 26, 2026
1518974
What's being built:
sumit1642 Apr 26, 2026
fc854ee
feat: add listing renewal functionality with handler and service
sumit1642 Apr 26, 2026
ec02e96
feat: implement listing analytics service and handler
sumit1642 Apr 26, 2026
8cbca52
refactor: clean up code structure and improve readability across mult…
sumit1642 Apr 26, 2026
fb94927
feat: add sorting functionality to search listings by compatibility
sumit1642 Apr 26, 2026
3ccfaf0
feat: add sorting option to search listings schema
sumit1642 Apr 26, 2026
b62e2c2
feat: implement saved searches functionality with CRUD operations and…
sumit1642 Apr 26, 2026
947f9c6
feat: add rent index controller, service, and routes
sumit1642 Apr 26, 2026
ae01617
feat: add rent index validation schema and notification for saved sea…
sumit1642 Apr 26, 2026
ce6d142
feat: remove outdated roommate matching and rent system design documents
sumit1642 Apr 26, 2026
e57a71a
feat: enhance roommate and rent index functionalities with improved c…
sumit1642 Apr 26, 2026
aa66f8e
Merge pull request #38 from sumit1642/tier0recommendation
sumit1642 Apr 26, 2026
efce0df
postman
sumit1642 Apr 30, 2026
12172df
fixNeeded
sumit1642 Apr 30, 2026
033602e
feat: remove implementation plan and task tracker for TanStack Query …
sumit1642 Apr 30, 2026
191be5c
fix: reduce max connections in pg pool from 20 to 5 for better resour…
sumit1642 May 16, 2026
6279200
feat: add saved search routes to the root router
sumit1642 May 16, 2026
a36b115
feat: enhance searchListings with improved geolocation handling and r…
sumit1642 May 16, 2026
36d0291
feat: add verification and report routes with admin access control
sumit1642 May 17, 2026
e4e207d
Implemented Admin Routes
sumit1642 May 17, 2026
8f58e26
delete unimplemented features audit document; it contained outdated i…
sumit1642 May 17, 2026
5214e7a
feat: enhance database connection pool configuration and add validati…
sumit1642 May 25, 2026
c54adec
feat: update deployment(tier0) documentation with new environment va…
sumit1642 May 25, 2026
887a0aa
Refactor: Remove unnecessary whitespace and comments across multiple …
sumit1642 May 25, 2026
6924138
feat: add missing PostGIS extensions to initial schema
sumit1642 May 25, 2026
8e5dd22
refactor: remove outdated comments from AzureBlobAdapter implementation
sumit1642 May 26, 2026
31f5200
Fix listing ranking and saved search scaling
sumit1642 May 26, 2026
c07d254
Update saved search alert timestamp after enqueue
sumit1642 May 26, 2026
d9c6d39
Merge pull request #39 from sumit1642/fix/listing-ranking-saved-searc…
sumit1642 May 26, 2026
a5b3238
Update .github/workflows/ci.yml
sumit1642 May 27, 2026
75de44a
Update .github/workflows/ci.yml
sumit1642 May 27, 2026
10b9cf3
Add migrations to fix rent observation trigger and roommate blocks co…
sumit1642 May 27, 2026
236fa58
Refactor various services and controllers for improved error handling…
sumit1642 May 27, 2026
9f0d8e1
Refactor migrations to enhance data integrity and indexing:
sumit1642 May 27, 2026
b0dde47
Merge pull request #41 from sumit1642/fix/tier0
sumit1642 May 27, 2026
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
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
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
Comment thread
sumit1642 marked this conversation as resolved.

steps:
- name: Checkout code
uses: actions/checkout@v4
Comment thread
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"
Comment thread
sumit1642 marked this conversation as resolved.

- name: Install dependencies
run: npm ci
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
node_modules/

# Environment files — never commit any .env variant
# Environment files — never commit
.env
.env.local
.env.azure
.env.render
.env.*.local
.env.test

env.render
# Local file uploads — stored on disk in dev, Azure Blob in prod
Comment thread
sumit1642 marked this conversation as resolved.
uploads/

Expand All @@ -24,4 +25,6 @@ Thumbs.db
.idea/

client_secret_535680244018-fd6emgcmkbqs9em1a0tov7p9bepbd9ki.apps.googleusercontent.com.json
roomies_backend.zip
roomies_backend.zip

postman/
Loading
Loading