From 29860d814268501f2c16510eaccccb77b39bdb43 Mon Sep 17 00:00:00 2001
From: Nico Vermaas <vermaas@astron.nl>
Date: Tue, 26 Jul 2022 13:28:40 +0200
Subject: [PATCH] - dev.txt points at local docker container now.

---
 README.md                       | 2 +-
 ldvspec/ldvspec/settings/dev.py | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index cccf6ac9..0ec67fed 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ LDV Specification Application. For filling ATDB-LDV with processing tasks for LO
 ### Local update
 After a collegue has made changes, then locally
   * git pull
-  * pip install -r requirements\dev.tx
+  * pip install -r requirements\dev.txt
   * python manage.py migrate --settings=ldvspec.settings.dev  
   
 ## Test Environment
diff --git a/ldvspec/ldvspec/settings/dev.py b/ldvspec/ldvspec/settings/dev.py
index 6abeb007..afbb1c5a 100644
--- a/ldvspec/ldvspec/settings/dev.py
+++ b/ldvspec/ldvspec/settings/dev.py
@@ -10,11 +10,11 @@ CORS_ORIGIN_ALLOW_ALL = True
 DATABASES = {
     'default': {
          'ENGINE': 'django.db.backends.postgresql_psycopg2',
-         'USER': 'atdb_admin',
-         'PASSWORD': 'atdb123',
+         'USER': 'postgres',
+         'PASSWORD': 'secret',
          'NAME': 'ldv-spec-db',
-         'HOST': 'localhost',
-         'PORT': '5432',
+         'HOST': 'raspiastro',
+         'PORT': '5433',
     },
 }
 
-- 
GitLab