aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/justfile b/justfile
index 4b46fb9..6411cc9 100644
--- a/justfile
+++ b/justfile
@@ -1,7 +1,7 @@
run-debug:
@RUST_BACKTRACE=1 cargo run $@
-build-dev:
+build:
@cargo build
build-prod:
@@ -9,3 +9,6 @@ build-prod:
start-postgres:
@docker start secd-db || docker run -d --name secd-db -e POSTGRES_PASSWORD=p4ssw0rd -e POSTGRES_USER=secduser -e POSTGRES_DB=secd -p 5412:5432 postgres:12 -c log_statement=all
+
+start-mailserver:
+ @docker start mailhog || docker run -d --name mailhog -p 7180:8025 -p 25:1025 mailhog/mailhog:latest