Skip to content

Commit

Permalink
Adding note about .env to installation manual.
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Oct 1, 2021
1 parent 70a4aff commit 3350aaa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs_manual/admin_install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ This will create the ``volumes`` directory (500GB of data, ZFS compression yield
$ ls volumes
exomiser jannovar minio postgres redis traefik
The next step is to create an installation-specific configuration file ``.env`` as a copy of ``env.example``.
You will have to at least set ``DJANGO_SECRET_KEY`` variable to something random (a bash one-liner for this is `tr -dc A-Za-z0-9 </dev/urandom | head -c 64 ; echo ''`).

.. code-block:: bash
$ cp env.example .env
$ $EDITOR .env
You can now bring up the site with Docker Compose.
The site will come up at your server and listen on ports 80 and 443 (make sure that the ports are open), you can access it at ``https://<your-host>/`` in your web browser.
This will create a lot of output and will not return you to your shell.
Expand Down

0 comments on commit 3350aaa

Please sign in to comment.