Blame view

docker/.env-sample 1.2 KB
a350a459   aklotz   Commentaires dans...
1
2
3
4
5
6
7
8
9
# ============================================================
# This file is common for Docker or nor Docker install types.
# ------------------------------------------------------------
# 1) Please copy this file into the same directory as .env
# 2) The file .env can/must be modified before:
#  * The install of PyROS if you want to use without Docker.
#  * The PYROS_DOCKER_BUILD of PyROS with Docker.
# ============================================================

af6953e2   Etienne Pallier   .env-sample comme...
10

a350a459   aklotz   Commentaires dans...
11
# === MySQL variables (change them only if you do not use Docker)
af6953e2   Etienne Pallier   .env-sample comme...
12
13

# Root login : define the name of the root account (when not using Docker)
a3d6c07f   Alexis Koralewski   Fixing .env-sample
14
MYSQL_ROOT_LOGIN=root
af6953e2   Etienne Pallier   .env-sample comme...
15
16
17
18
19

# Root Password : any value as password without any space
MYSQL_ROOT_PASSWORD=root

# TCP Port - define mysql tcp port (default is 3306)
a3d6c07f   Alexis Koralewski   Fixing .env-sample
20
MYSQL_TCP_PORT=3306
af6953e2   Etienne Pallier   .env-sample comme...
21

8d8d4b50   Alexis Koralewski   adding mysql user...
22
# define login for superadmin user
a3d6c07f   Alexis Koralewski   Fixing .env-sample
23
MYSQL_PYROS_LOGIN=pyros
af6953e2   Etienne Pallier   .env-sample comme...
24

8d8d4b50   Alexis Koralewski   adding mysql user...
25
# define password for superadmin user
a3d6c07f   Alexis Koralewski   Fixing .env-sample
26
MYSQL_PYROS_PWD=DjangoPyros
af6953e2   Etienne Pallier   .env-sample comme...
27
28
29
30
31


# === Other variables

# 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.
a3d6c07f   Alexis Koralewski   Fixing .env-sample
32
PYROS_WEBSITE_PORT=8000
af6953e2   Etienne Pallier   .env-sample comme...
33

e8a64c9f   Alexis Koralewski   Renaming HOST_NAM...
34
35
# Webserver Host name
WEBSERVER_HOST_NAME=localhost
af6953e2   Etienne Pallier   .env-sample comme...
36
37

# PhpMyAdmin Port
151b7de5   Alexis Koralewski   Add port configur...
38
PHPMYADMIN_PORT=8081