From 83724984e557c20aae9ca7700c3b1fec64150ba6 Mon Sep 17 00:00:00 2001
From: chausman <chausman@nrao.edu>
Date: Thu, 3 Sep 2020 09:51:10 -0600
Subject: [PATCH] updating setup instructions

---
 services/workflow/README.md | 6 ++++--
 services/workflow/setup.py  | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/services/workflow/README.md b/services/workflow/README.md
index 260ee6bb3..95b376a45 100644
--- a/services/workflow/README.md
+++ b/services/workflow/README.md
@@ -1,9 +1,11 @@
 # Workflow: the Workspaces Workflow Service
 
-To use, first run the Alembic migrations:
+To use, first run the Alembic migrations in /schema:
 
     env CAPO_PROFILE=local alembic upgrade head
-
+Then run:
+    `python setup.py develop`
+    
 Then you should be able to run this with:
 
     env CAPO_PROFILE=local pserve --reload development.ini
diff --git a/services/workflow/setup.py b/services/workflow/setup.py
index 88752e0c1..1d6eedbc6 100644
--- a/services/workflow/setup.py
+++ b/services/workflow/setup.py
@@ -18,7 +18,7 @@ this_module = 'workflow'
 here = path.abspath(path.dirname(__file__))
 
 # Get the long description from the README file
-with open(path.join(here, 'README.txt'), encoding='utf-8') as f:
+with open(path.join(here, 'README.md'), encoding='utf-8') as f:
     long_description = f.read()
 
 
-- 
GitLab