Skip to content

Commit 8374a0c

Browse files
authored
Merge pull request #287 from TIBCOSoftware/retgits-patch-1
Update best-practices-app-development.md
2 parents 22756da + 80b18c3 commit 8374a0c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/content/development/apps/best-practices-app-development.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,12 @@ You definitely want to store your apps in a source control system and we recomme
1919
/pkg
2020
## vendor folder in src is constructed using flogo ensure
2121
/src/*/vendor
22-
```
22+
```
23+
24+
## using the -flv flag
25+
With the flogo cli you're usually on the latest tagged version of the main flogo repos. If you want to pick up the latest master branch, or a specific branch, you can use the `-flv` flag with `flogo create`. The flag wraps the `dep` command and since dep expects go code at the root of a repo, you'll need to specify specify a package within that repo rather than the repo itself for the main flogo repositories:
26+
27+
* For [flogo-contrib](https://github.com/TIBCOSoftware/flogo-contrib) you can use `github.com/TIBCOSoftware/flogo-contrib/action/flow@master`
28+
* For [flogo-lib](https://github.com/TIBCOSoftware/flogo-lib) you can use `github.com/TIBCOSoftware/flogo-lib/engine@master`
29+
30+
_You can replace master with any branch you want_

0 commit comments

Comments
 (0)