From 786acef5e0d4cb48b348242e20315649e0f2dc65 Mon Sep 17 00:00:00 2001 From: mrjones <8253488+mrjones-plip@users.noreply.github.com> Date: Fri, 1 Nov 2024 13:18:06 -0700 Subject: [PATCH] change .env to use http by default (#219) --- env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.example b/env.example index 075c5df..46a609a 100644 --- a/env.example +++ b/env.example @@ -3,7 +3,7 @@ COOKIE_PRIVATE_KEY= # unique random key, use uuidgen to populate WORKER_PRIVATE_KEY= # unique random key, use uuidgen to populate. different from COOKIE_PRIVATE_KEY CONFIG_NAME=chis-ke # Name of the configuration INTERFACE=0.0.0.0 # Leave as '0.0.0.0' for prod, suggest '127.0.0.1' for development -CHT_DEV_HTTP=false # 'true' for http 'false' for https +CHT_DEV_HTTP=true # 'true' for http 'false' for https CHT_DEV_URL_PORT=localhost:5984 # where your dev CHT instance is, hostname:port # uncomment for local development ( `npm run dev`)