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
commiteccde1cdb666b0bcfd339fd06222a0fd8a6a077d (patch)
tree81322a4cbd6b4064f743da09690d81832d39a750
parentfeat(docker): docker configuration (diff)
downloadcapybara-eccde1cdb666b0bcfd339fd06222a0fd8a6a077d.tar.xz
capybara-eccde1cdb666b0bcfd339fd06222a0fd8a6a077d.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 .
+