aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml34
1 files changed, 0 insertions, 34 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 4b74c36..67f8ff0 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -24,37 +24,3 @@ dependencies = ["fmt", "check"]
[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]
-
-[tasks.run]
-dependencies = ["checkf"]
-command = "cargo"
-args = ["run"]
-
-[tasks.runw]
-dependencies = ["checkf"]
-command = "cargo"
-args = ["run"]
-watch = true
-
-[tasks.docker-build]
-command = "nix-build"
-args = ["docker.nix"]
-
-[tasks.docker-load]
-script_runner = "@shell"
-script = '''
-docker load < result
-'''
-
-[tasks.docker-run]
-command = "docker"
-args = [
- "run",
- "--name", "senpy_api",
- "-p", "1337:80",
- "senpy-club/api"
-]
-
-# Build 'n' load
-[tasks.bnl]
-dependencies = ["docker-build", "docker-load"]