aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-07-22 08:36:17 +0000
committerFuwn <[email protected]>2021-07-22 08:36:17 +0000
commit1d2163d1f070faf10fbfbbeac0fce8acae813c49 (patch)
tree81322a4cbd6b4064f743da09690d81832d39a750
parentfeat(docker): docker configuration (diff)
downloadcapybara-1d2163d1f070faf10fbfbbeac0fce8acae813c49.tar.xz
capybara-1d2163d1f070faf10fbfbbeac0fce8acae813c49.zip
chore(make): make configuration
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..292bc81
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+fmt:
+ go fmt github.com/fuwn/capybara...
+
+run: fmt validate
+ go run github.com/fuwn/capybara
+
+build: fmt
+ go build
+
+docker: fmt
+ docker build -t fuwn/capybara:latest .
+