From a768ee8b9962efad152e99fdf0dbac2148aa5409 Mon Sep 17 00:00:00 2001 From: Sebastian Lenzlinger Date: Mon, 8 Jan 2024 14:29:34 +0000 Subject: [PATCH] Update wiki.md --- docs/wiki.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/wiki.md b/docs/wiki.md index 702fd5a..00b3ff5 100755 --- a/docs/wiki.md +++ b/docs/wiki.md @@ -21,10 +21,8 @@ deactivate # List of used packages See ``requirements.txt`` -# Setting up postgres -# Setting up pgadmin as container serverd by nginx - -# Load csv into db HOT FIX +# Postgres/SQL Things +## Load csv into db HOT FIX Go to directory containing the csvs. ```bash cd group-1/src/datasets/integrated/ && psql -h localhost -d proj_db -U sebl -p 5433 @@ -35,7 +33,7 @@ Then manually copy \copy mivcount FROM 'MivCount.csv' WITH CSV HEADER ``` -# How to create a db dump from the command line +## How to create a db dump from the command line ```bash pg_dump -U sebl -p 5433 -d proj_db > [dump_file].sql ```