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 ```