Skip to content

Commit

Permalink
updated README and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Mar 28, 2024
1 parent f30403f commit c0c048c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,23 @@ The setup script provides the following support:
2) Add a new `PFDCM` service to `MongoDB`

### to use:
```bash
```commandline
cd pflink
./setup.sh --help
```

## `resetWorkflow.sh`
Sometimes, we need to find a specific workflow request and restart using `pflink`. This repo
contains a script ``resetWorkflow`` to do so. The script does the following tasks:
1) Authenticate to a ``pflink`` instance
2) Find a list of "keys" pointing to workflow records that match the user search values
3) Display each workflow record and provide the following options:
1) delete the record and re-submit
2) continue to the next record
3) exit

### to use:
```commandline
cd pflink
./resetWorkflow.sh --help
```
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class Settings(BaseSettings):
pflink_mongodb: MongoDsn = 'mongodb://localhost:27017'
version: str = "3.9.6"
version: str = "4.0.0"
mongo_username: str = "admin"
mongo_password: str = "admin"
log_level: str = "DEBUG"
Expand Down

0 comments on commit c0c048c

Please sign in to comment.