forked from decred/dcrdex
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·38 lines (27 loc) · 810 Bytes
/
Copy pathMakefile
File metadata and controls
executable file
·38 lines (27 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
all:
make build
make run
run:
./run.sh
l:
make run
build:
./build.sh
server_build:
./build_server.sh
server_run:
./run_server.sh
build_linux:
./build_linux.sh
test:
./run_tests.sh
format:
gofmt -w -s $$(find . -type f -name '*.go' -not -path "./pkg/proto/*" -not -name "*.gen.go" -not -path "*/mock/*")
goimports -w $$(find . -type f -name '*.go' -not -path "./pkg/proto/*" -not -name "*.gen.go" -not -path "*/mock/*")
#comment:
# $GOPATH/bin/commentwrap -fix -docflow_limit=90 /Users/norwnd/crypto-integrations/applications/outgoing-transactions/domain/outgoing_transaction.go
# $GOPATH/bin/commentwrap -fix -docflow_limit=90 TODO
server_deps_up:
docker-compose -f server/docker/deps-compose.yml up -d --build
server_deps_down:
docker-compose -f server/docker/deps-compose.yml down