-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.plantilla
90 lines (76 loc) · 2.09 KB
/
.env.plantilla
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/sh
# Variables de configuración de la aplicación
# Damos precedencia a las especificadas en línea de ordenes
# Base de datos
if (test "$BD_SERVIDOR" = "") then {
export BD_SERVIDOR=/var/www/var/run/postgresql
} fi;
if (test "$BD_USUARIO" = "") then {
export BD_USUARIO=sipdes
} fi;
if (test "$BD_CLAVE" = "") then {
export BD_CLAVE=xyz
} fi;
if (test "$BD_DES" = "") then {
export BD_DES=heb412gen_des
} fi;
if (test "$BD_PRUEBA" = "") then {
export BD_PRUEBA=heb412gen_pru
} fi;
if (test "$BD_PRO" = "") then {
export BD_PRO=heb412gen_pro
} fi;
# Despliegue
if (test "$CONFIG_HOSTS" = "") then {
export CONFIG_HOSTS=192.168.10.1
} fi;
if (test "$RUTA_RELATIVA" = "") then {
export RUTA_RELATIVA=/heb412/
} fi;
if (test "$DIRAP" = "") then {
export DIRAP="$HOME/comp/rails/heb412"
} fi;
if (test "$RAILS_ENV" = "") then {
export RAILS_ENV=development
} fi;
if (test "$ORIGEN_CORS" = "") then {
# Permite peticiones al API desde los siguientes dominios
export ORIGEN_CORS="localhost:8080,mi.dominio.org,192.168.1.1:3000"
}
# Despliegue en modo desarrollo
if (test "$IPDES" = "") then {
export IPDES=192.168.10.1
} fi;
if (test "$PUERTODES" = "") then {
export PUERTODES=3000
} fi;
if (test "$MAQRECVIVA" = "") then { # Conexión para recarga viva
export MAQRECVIVA="$CONFIG_HOSTS"
} fi;
if (test "$PUERTORECVIVA" = "") then { # Puerto para recarga viva
export PUERTORECVIVA=4500
} fi;
# Despliegue en modo producción con unicorn
if (test "$RC" = "") then {
export RC=heb412
} fi;
if (test "$PUERTOUNICORN" = "") then {
export PUERTOUNICORN=3015
} fi;
if (test "$USUARIO_AP" = "") then {
export USUARIO_AP=miusuario
} fi;
# Configuraciones requeridas por msip
if (test "$MSIP_FORMATO_FECHA" = "") then {
export MSIP_FORMATO_FECHA='dd/M/yyyy'
} fi;
if (test "$MSIP_RUTA_ANEXOS" = "") then {
export MSIP_RUTA_ANEXOS=${DIRAP}/archivos/anexos
} fi;
if (test "$MSIP_RUTA_VOLCADOS" = "") then {
export MSIP_RUTA_VOLCADOS=${DIRAP}/archivos/bd
} fi;
# Configuraciones requeridas por heb412
if (test "$HEB412_RUTA" = "") then {
export HEB412_RUTA=${DIRAP}/public/sisarch
} fi;