Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

Commit

Permalink
fix(Makefile): default to unauthenticated in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreese committed Sep 20, 2021
1 parent 7d883d3 commit 5691bc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ BINDLE_IFACE ?= 127.0.0.1:8080
MIME ?= "application/toml"
CERT_NAME ?= ssl-example
TLS_OPTS ?= --tls-cert $(CERT_NAME).crt.pem --tls-key $(CERT_NAME).key.pem
AUTH_MODE ?=
# Example of HTTP basic auth with the testing fixture data.
AUTH_MODE ?= --unauthenticated
# Example of HTTP basic auth with the testing fixture data.
#AUTH_MODE ?= --htpasswd-file test/data/htpasswd
EMBEDDED_FLAG ?= --use-embedded-db

Expand Down Expand Up @@ -66,7 +66,7 @@ _run:
# Sort of a wacky hack if you want to do `$(make client) --help`
.PHONY: client
client:
@echo cargo run $(CLIENT_FEATURES) --bin $(CLIENT_BIN) --
@echo cargo run $(CLIENT_FEATURES) --bin $(CLIENT_BIN) --

.PHONY: build
build: build-server
Expand Down

0 comments on commit 5691bc4

Please sign in to comment.