Update Docs for new development workflow 19/69719/1
authorParker Berberian <pberberian@iol.unh.edu>
Fri, 21 Feb 2020 19:40:17 +0000 (14:40 -0500)
committerParker Berberian <pberberian@iol.unh.edu>
Fri, 21 Feb 2020 19:40:17 +0000 (14:40 -0500)
The new development workflow spawns a server at
port 8000 and requires DEBUG to be True.

Change-Id: I430b163b4847fbbdc147b2e6b707409e7220e40d
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
config.env.sample
readme.txt

index a21d060..fadf0ed 100644 (file)
@@ -1,7 +1,7 @@
-DASHBOARD_URL=http://labs.opnfv.org
+DASHBOARD_URL=http://127.0.0.1:8000
 
 # SECURITY WARNING: don't run with debug turned on in production!
-DEBUG=False
+DEBUG=True
 # TEST should be True if you want to run some tests in your local dev environment
 TEST=False
 
index 5402e8b..40a39fc 100644 (file)
@@ -45,3 +45,5 @@ Development:
 - Install dependencies listed in 'Deployment'
 - run 'make build'
 - run 'make dev-up'
+
+    NOTE: DEBUG must be set to True in config.env when running development builds