Browse Source

Connection to a local postgres sql database

Jovian (Netbook) 6 years ago
parent
commit
2499e2a626
2 changed files with 5 additions and 2 deletions
  1. 4 1
      README.md
  2. 1 1
      app_dispatcher.py

+ 4 - 1
README.md

@@ -16,4 +16,7 @@ Populate database with tables :
 `psql -d logistics -f SQL/create_tables.sql postgres`
 
 Populate tables with sample data :
-`psql -d logistics -f SQL/populate_tables.sql postgres`
+`psql -d logistics -f SQL/populate_tables.sql postgres`
+
+If needed you can adapt the password of postgres user (or any user you want) :
+`psql -c "alter user postgres password 'postgres_password'"`

+ 1 - 1
app_dispatcher.py

@@ -1,6 +1,6 @@
 from connect import DataConsumer
 
-credentials = "host=appli-pfe.ec-nantes.fr dbname=app_bdonn_01 user=app2_01 password=osiris"
+credentials = "host=localhost dbname=logistics user=postgres password=postgres_password"
 
 print('Start')