From: Russell Currey Date: Wed, 1 May 2019 03:16:43 +0000 (+1000) Subject: README: add .env file to installation instructions X-Git-Tag: v2.2.0-rc1~124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b363a7884ef7daadc313063a26ff3d32e38a5ce;p=thirdparty%2Fpatchwork.git README: add .env file to installation instructions Creating the .env file is mentioned in the installation documentation but not in the README, so following only the steps mentioned there will fail. Add this and add a `cd patchwork` in there for good measure so you could straight up copy paste the steps. Signed-off-by: Russell Currey Reviewed-by: Andrew Donnellan Signed-off-by: Daniel Axtens --- diff --git a/README.rst b/README.rst index 38c18473..b45c3e6a 100644 --- a/README.rst +++ b/README.rst @@ -61,11 +61,16 @@ environment. To install Patchwork: $ git clone https://github.com/getpatchwork/patchwork.git -3. Build the images. This will download over 200MB from the internet:: +3. Create a ``.env`` file in the root directory of the project and store your + ``UID`` attribute there:: + + $ cd patchwork && echo "UID=$UID" > .env + +4. Build the images. This will download over 200MB from the internet:: $ docker-compose build -4. Run `docker-compose up`:: +5. Run `docker-compose up`:: $ docker-compose up