From b26649e8c0d92b5bbf57d69ef5176e1f1667202a Mon Sep 17 00:00:00 2001 From: Bat Date: Tue, 26 Jun 2018 18:16:18 +0200 Subject: [PATCH] Document the USE_HTTPS variable --- DEVELOPMENT.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 8b9773b2..f5b71170 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -87,6 +87,12 @@ To run this other instance, you'll need to give two environment variables: ROCKET_PORT=3033 DB_NAME=my_other_plume_db cargo run ``` +If you don't want to setup HTTPS locally, you can also disable it by running your instance with `USE_HTTPS=0` set. + +``` +USE_HTTPS=0 cargo run +``` + #### Making a Pull Request To create an upstream fork of the repository in GitHub, click "Fork" in the top right button on the main page of the [Plume repository](https://github.com/Plume-org/Plume). Now, in the command line, set another remote for the repository by running the following command, replacing `myname` with the name under which you forked the repo. You can use another name besides `upstream` if you prefer. Using [SSH](https://help.github.com/articles/connecting-to-github-with-ssh/) is recommended.