Installed postgresql client
Pycroft needs a PostgreSQL database backend. The unit tests will generate the schema and data automatically, but usually you want to run your development instance against a recent copy of our current production database.
The password for the postgres
user is password
.
# clone the anonymized dump into `data/`
docker compose stop dev-app dev-bundler
git clone https://git.agdsn.de/AGDSN/pycroft-data.git data --depth=1
export PGPASSFILE=.pycroft.pgpass
psql -wb postgres://postgres@127.0.0.1:55432/pycroft \
-c '\set ON_ERROR_STOP 1' \
-c 'drop schema if exists pycroft cascade' \
-f data/pycroft_schema.sql \
-f data/pycroft.sql
# start the web app again
docker compose start dev-app dev-bundler
Navigate to http://localhost:5000.
You should be able to login with user agdsn
and password password
.
# PW: `password`
docker compose exec --user=postgres dev-db psql pycroft
Installed postgresql client
psql -h 127.0.0.1 -p 55432 -U postgres -d pycroft \
-c "\copy [tablename] from 'file.csv' with delimiter ',' csv header;"