Without knowing when game days are, commuters are left surprised by heavier than usual traffic delays. The purpose of this app is to alert users to upcoming events in the Seattle area, helping them plan ahead.
Users can input:
- starting location
- ending destination
- travel date and time
- expected arrival time
App can:
- recommend how much extra travel time users should allocate based on events traffic
- display upcoming events in today, 3 day, 1 week format
- Typescript
- Bun.sh
- Express
- PostgreSQL
- React
-
Start server:
bun run dev
-
Start server mode:
bun server.ts
-
Setup DB:
- Create DB:
createdb seattle_traffic_events
- Run:
psql -f Backend/data/schema.sql seattle_traffic_events
- Seed DB:
bun run Backend/data/seed.ts
- Create DB: