-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (34 loc) · 837 Bytes
/
Makefile
File metadata and controls
42 lines (34 loc) · 837 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
39
40
41
42
SHELL=/bin/bash
.PHONY: run_back run_front
run_back:
go generate ./...
go run -race cmd/fdns/main.go run -config=./configs/config.dev.yaml
run_front:
cd web && npm ci --no-delete --cache=/tmp && npm run start
.PHONY: build_back build_font
build_back:
bash scripts/build.sh amd64
build_font:
bash scripts/build.sh front
.PHONY: linter
linter:
bash scripts/linter.sh
.PHONY: tests
tests:
bash scripts/tests.sh
.PHONY: develop_up develop_down
develop_up:
bash scripts/docker.sh docker_up
develop_down:
bash scripts/docker.sh docker_down
.PHONY: ci
ci:
bash scripts/ci.sh
deb: build_font
deb-builder build
nslookup:
nslookup -port=8053 google.com 127.0.0.1
nslookup -port=8053 yandex.ru 127.0.0.1
nslookup -port=8053 vk.com 127.0.0.1
nslookup -port=8053 dewep.pro 127.0.0.1
nslookup -port=8053 dewep.online 127.0.0.1