Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d3ff907
updating versions to be compatible with latest flutter version
Jun 18, 2025
a3db662
making recommended lint fixes
Jun 18, 2025
09a90ab
fixing gradle build versions so the android version would build. got …
Jun 19, 2025
595c7e8
re-adding ios build files to test notifications. got login working
Jun 19, 2025
4969083
beginning work on icons for points of interest
Jul 23, 2025
8006e5c
adding initial point-of-interest data load
Jul 23, 2025
374bfe0
WIP still working on loading DB, 'pixi run db-init' loads the DB dire…
Jul 25, 2025
b748847
type and points load from CSV correctly
Aug 4, 2025
093136b
points of interest loaded into context, but still not getting to map.…
Aug 5, 2025
2e247fc
updating icons, as per discussion
Aug 5, 2025
3248425
initial location picker. messy, but a start. WIP.
Aug 12, 2025
df8d7ec
WIP checkpoint
Aug 15, 2025
88cb297
Updated to run in docker compose deployment
Aug 17, 2025
eff34ba
first steps of replacing home map
Aug 25, 2025
2ee1664
added DB init feature to load cluster geometries from CSV
Aug 25, 2025
c5ffe8f
cluster geom load from db and poly render on map
Aug 29, 2025
236cff9
Added cluster outline for current cluster
Aug 30, 2025
6c35d56
checkpoint: am able to paint all clusters.
Sep 2, 2025
a915796
WIP, message table created and loaded with sample data
Sep 5, 2025
12e22f9
updating gh-action-pypi-publish as per https://github.com/UW-THINKlab…
Sep 5, 2025
ab59b6d
WIP able to load messages from db
Sep 7, 2025
1e35470
WIP adding some color and formatting for messages
Sep 7, 2025
ffcb39f
WIP fixed minor bugs, updated urgency colors, updated versions
Sep 8, 2025
e172225
after major data merge
Sep 10, 2025
2ab38ab
putting cluster outlines and points of interest on map w/o toggle
Sep 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/cd_support_sphere_py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
ls -ltrh
ls -ltrh dist
- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@v1.12.3
uses: pypa/gh-action-pypi-publish@v1.13.0
with:
repository-url: https://test.pypi.org/legacy/
verbose: true
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# MacOS
.DS_Store

# VS Code
.vscode/

# Pixi
.pixi
*.egg-info
Expand Down
38 changes: 0 additions & 38 deletions .vscode/launch.json

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion deployment/kubernetes/populate_db_job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Job
metadata:
name: populate-db-job
spec:
ttlSecondsAfterFinished: 120 # the job pod will auto-delete 120 secs after completion
ttlSecondsAfterFinished: 86400 # the job pod will auto-delete a DAY after completion
template:
spec:
containers:
Expand Down
3 changes: 3 additions & 0 deletions deployment/supabase/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Supabase Docker

This is a minimal Docker Compose setup for self-hosting Supabase. Follow the steps [here](https://supabase.com/docs/guides/hosting/docker) to get started.
Loading
Loading