Commit af6953e2ed9e92bba329207787b4f3ad592d49ea

Authored by Etienne Pallier
1 parent bc5089a0
Exists in dev

.env-sample commentaires et aeration

Showing 1 changed file with 18 additions and 6 deletions   Show diff stats
docker/.env-sample
... ... @@ -7,20 +7,32 @@
7 7 # * The PYROS_DOCKER_BUILD of PyROS with Docker.
8 8 # ============================================================
9 9  
  10 +
10 11 # === MySQL variables (change them only if you do not use Docker)
11   -# any value as password without any space
12   -MYSQL_ROOT_PASSWORD=root
13   -# define the name of the root account (when not using Docker)
  12 +
  13 +# Root login : define the name of the root account (when not using Docker)
14 14 MYSQL_ROOT_LOGIN=root
15   -# define mysql tcp port (default is 3306)
  15 +
  16 +# Root Password : any value as password without any space
  17 +MYSQL_ROOT_PASSWORD=root
  18 +
  19 +# TCP Port - define mysql tcp port (default is 3306)
16 20 MYSQL_TCP_PORT=3306
  21 +
17 22 # define login for superadmin user
18 23 MYSQL_PYROS_LOGIN=pyros
  24 +
19 25 # define password for superadmin user
20 26 MYSQL_PYROS_PWD=DjangoPyros
21   -# Define the local port where you will access the website. When using Docker, we will bind the same port within the docker network and your local port.
  27 +
  28 +
  29 +# === Other variables
  30 +
  31 +# Webserver Local port - define the port where you will access the website. When using Docker, we will bind the same port within the docker network and your local port.
22 32 PYROS_WEBSITE_PORT=8000
  33 +
23 34 # Webserver Host name
24 35 WEBSERVER_HOST_NAME=localhost
25   -# PORT PHPMYADMIN
  36 +
  37 +# PhpMyAdmin Port
26 38 PHPMYADMIN_PORT=8081
27 39 \ No newline at end of file
... ...