-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad66057
commit 4a28100
Showing
1 changed file
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
# run-flogo-app | ||
This app will run the latest TIBCO Flogo Enterprise app in the directory specified by you | ||
This program will run the latest TIBCO Flogo Enterprise app in the directory specified by you | ||
|
||
### How to Download | ||
You can download the release from here https://github.com/abhijitWakchaure/run-flogo-app/releases/latest | ||
|
||
### How to Use | ||
Make sure the binary you downloaded is executable, then you can directly run it as executable | ||
``` | ||
./run-flogo-app | ||
``` | ||
You can provide `-debug` flag to enable the debug logs in your flogo app, just make sure its the `first` argument to the program like this: | ||
``` | ||
./run-flogo-app -debug | ||
``` | ||
Also, you can pass command line arguments if your flogo app supports it; like this (the -debug flag is not mandatory for this): | ||
``` | ||
./run-flogo-app -debug arg1 arg2 arg3 | ||
``` | ||
|
||
|
||
### The config file | ||
When the program starts it creates a config file with name `.run-flogo-app` in the same directory. It is a simple json file which looks like this: | ||
``` | ||
{ | ||
"rfAppDir": "/home/abhijit/Downloads", | ||
"rfAppPattern": "^.+-linux_amd64.*$" | ||
} | ||
``` | ||
You can override the programs behavior by changing this file. |