f897ee3aea | ||
---|---|---|
config | ||
crc | ||
deploy | ||
docs | ||
migrations | ||
postgres | ||
readme_images | ||
schema | ||
tests | ||
.gitignore | ||
.sonarcloud.properties | ||
.travis.yml | ||
Dockerfile | ||
LICENSE.md | ||
Pipfile | ||
Pipfile.lock | ||
README.md | ||
crconnect.wsgi | ||
deploy.sh | ||
docker_run.sh | ||
example_data.py | ||
fact_runner.py | ||
package-lock.json | ||
run.py | ||
setup.cfg | ||
setup.py | ||
sonar-project.properties | ||
wait-for-it.sh | ||
wsgi.py |
README.md
sartography/cr-connect-workflow
CR Connect Workflow Microservice
Development Setup
Tools
These instructions assume you're using these development and tools:
- IDE: PyCharm Professional Edition
- Operating System: Ubuntu
Environment Setup
Make sure all of the following are properly installed on your system:
python3
&pip3
:pipenv
:
Running Postgres
Project Initialization
-
Clone this repository.
-
In PyCharm:
- Go to
File > New Project...
- Click
Pure Python
(NOTFlask
!!) - Click the folder icon in the
Location
field. - Select the directory where you cloned this repository and click
Ok
. - Expand the
Project Interpreter
section. - Select the
New environment using
radio button and choosePipenv
in the dropdown. - Under
Base interpreter
, selectPython 3.7
- In the
Pipenv executable
field, enter/home/your_username_goes_here/.local/bin/pipenv
- Click
Create
- Go to
-
PyCharm should automatically install the necessary packages via
pipenv
. For me, the project interpreter did not set set up for me correctly on first attempt. I had to go to File -> Settings -> Project Interpreter and again set the project to use the correct PipEnv environment. Be sure that your settings like simliar to this, or attempt to add the interpreter again by clicking on the gear icon. -
With this properly setup for the project, you can now right click on the run.py and set up a new run configuration and set up a run configuration that looks like the following (be sure to save this run configuration so it doesn't go away.) :
Running the Web API
Just click the "Play" button next to RUN in the top right corner of the screen. The Swagger based view of the API will be avialable at http://0.0.0.0:5000/v1.0/ui/
Running Tests
We use pytest to execute tests. You can run this from the command line with:
pipenv run coverage run -m pytest
To run the tests within PyCharm set up a run configuration using pytest (Go to Run, configurations, click the plus icon, select Python Tests, and under this select pytest, defaults should work good-a-plenty with no additional edits required.)
Documentation
Additional Documentation is available on ReadTheDocs
Additional Reading
- BPMN Is the tool we are using to create diagrams of our business processes. It's is a beautiful concise diagramming tool. We strongly recommend you read this complete tutorial, as this notation is the foundation on which this project as well as many other software systems for businesses are built. Know it well.
Notes on Creating Good BPMN Diagrams in Comunda
- Be sure to give each task a thoughtful (but unique!) id. This will make the command line and debugging far far easier. I've tended to pre-fix these, so task_ask_riddle if a task is asking a riddle for instance.