We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c991e0 commit 2f2d60dCopy full SHA for 2f2d60d
2 files changed
.bra.toml
@@ -0,0 +1,13 @@
1
+[run]
2
+init_cmds = [["go", "build"], ["./blockform"]]
3
+watch_all = true
4
+watch_dirs = [
5
+ "$WORKDIR/"
6
+]
7
+watch_exts = [".go"]
8
+ignore = [".git"]
9
+
10
+# Minimal interval to Trigger build event
11
+build_delay = 2000
12
13
+cmds = [["go", "build"], ["./blockform"]]
README.md
@@ -73,3 +73,10 @@ Get, build and run:
73
go get github.com/WeTrustPlatform/blockform
74
cd $GOPATH/src/github.com/WeTrustPlatform/blockform
75
go build && ./blockform
76
77
78
+### Development
79
+- (Optional) Auto rebuild and restart server when you make changes in `*.go` files using [bra](https://github.com/Unknwon/bra)
80
+ * `go get github.com/Unknwon/bra`
81
+ * `bra run`
82
+ * Happy coding
0 commit comments