aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2020-02-21 14:40:17 -0500
committerParker Berberian <pberberian@iol.unh.edu>2020-02-21 14:40:17 -0500
commit8eab4c4a801a367f74347627c19dd721f75c7a62 (patch)
tree1f29a78f1121c0dc91bbd7993e34d86d2422a4d7
parentd63a08e56716358ea4daa30d3050fa01df65a837 (diff)
Update Docs for new development workflow
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>
-rw-r--r--config.env.sample4
-rw-r--r--readme.txt2
2 files changed, 4 insertions, 2 deletions
diff --git a/config.env.sample b/config.env.sample
index a21d060..fadf0ed 100644
--- a/config.env.sample
+++ b/config.env.sample
@@ -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
diff --git a/readme.txt b/readme.txt
index 5402e8b..40a39fc 100644
--- a/readme.txt
+++ b/readme.txt
@@ -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