Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 648 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 648 Bytes

VZ Model Workspace

Database

  • Start the database
docker compose up -d postgis
  • connect on localhost on 5432
  • username: vz
  • password: vz
  • database: visionzero
  • it trusts all connections, so the password is optional-ish

Adminer (DB UI)

  • Fire up the Adminer to inspect DB contents via a web UI
docker compose up -d adminer
  • connect with a browser on 8080
  • use the DB credentials

Python 🐍

  • If you want a python container with psycopg2 installed, run
docker compose run python
  • that should dump you in a shell where the python directory is bind-mounted on /application