diff options
| author | Fuwn <[email protected]> | 2021-07-22 08:36:17 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-07-22 08:36:17 +0000 |
| commit | eccde1cdb666b0bcfd339fd06222a0fd8a6a077d (patch) | |
| tree | 81322a4cbd6b4064f743da09690d81832d39a750 | |
| parent | feat(docker): docker configuration (diff) | |
| download | capybara-eccde1cdb666b0bcfd339fd06222a0fd8a6a077d.tar.xz capybara-eccde1cdb666b0bcfd339fd06222a0fd8a6a077d.zip | |
chore(make): make configuration
| -rw-r--r-- | Makefile | 12 |
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 . + |