Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
1b5c560
fix: Updated docker-compose files for production and development envi…
ananyaa06 Jun 29, 2025
fea431a
feat(api): add secure site management and public sites endpoints
ananyaa06 Jul 12, 2025
6d7ebd9
feat(core): add mongoose schema for Site model
ananyaa06 Jul 12, 2025
8230e28
feat: add secure site management endpoints
ananyaa06 Jul 16, 2025
0992445
fix(routes): add leading slash to secure-site endpoints
ananyaa06 Jul 16, 2025
1c217d4
feat: add public sites API endpoint
ananyaa06 Jul 16, 2025
6e35be7
refactor: address PR review comments
ananyaa06 Jul 17, 2025
0af04c9
fix: address PR review comments
ananyaa06 Jul 17, 2025
5ce36c1
refactor: change sites to public-sites to not confuse with old endpoi…
ananyaa06 Aug 1, 2025
56f13c2
feat: add validation for latitude and longitude
ananyaa06 Aug 7, 2025
500adf2
docs: add comments to secure-site route handlers
ananyaa06 Aug 7, 2025
2f27281
refactor: replace api/public-sites with api/sites and make necessary …
ananyaa06 Aug 9, 2025
c78960d
feat: add testing coverage for secure-site.ts functions
ananyaa06 Aug 16, 2025
c99f4d9
refactor: run format
ananyaa06 Aug 16, 2025
f0361e7
feat: add test step to CI
ananyaa06 Aug 16, 2025
d737267
fix: make test action run before release
ananyaa06 Aug 16, 2025
488ea2e
refactor: remove old-sites
ananyaa06 Aug 28, 2025
c620d83
fix: put edit-sites behind secure
ananyaa06 Aug 28, 2025
2a99213
refactor: remove duplicate line
ananyaa06 Sep 7, 2025
ac44be1
refactor: remove empty line
ananyaa06 Sep 7, 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
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- name: Install dependencies
run: npm install --include=dev

- name: Run tests
run: npm run test

- name: Run semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand All @@ -35,4 +38,4 @@ jobs:
REPO_OWNER: "Local-Connectivity-Lab"
REPO_NAME: "ccn-coverage-docker"
TARGET_ARTIFACT_NAME: "ccn-coverage-api"
run: npx semantic-release
run: npx semantic-release
4 changes: 2 additions & 2 deletions docker-compose-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:

vis:
container_name: vis
image: ghcr.io/local-connectivity-lab/ccn-coverage-vis:latest
image: ccn-coverage-vis:latest
ports:
- "8090:80"
depends_on:
Expand All @@ -12,7 +12,7 @@ services:

api:
container_name: api
image: ghcr.io/local-connectivity-lab/ccn-coverage-api:latest
image: ccn-coverage-api:latest
ports:
- "8091:3000"
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- MONGODB_URI=mongodb://mongodb:27017/api-data
- LDAP_URI=ldap://ldap:389
volumes:
- ./keys/:/app/keys
- ./keys/:/usr/src/app/keys/
depends_on:
- mongodb
- ldap
Expand Down
Loading