-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.plantilla
130 lines (102 loc) · 2.95 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/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=clave
} fi;
if (test "$BD_DES" = "") then {
export BD_DES=siasom_des
} fi;
if (test "$BD_PRUEBA" = "") then {
export BD_PRUEBA=siasom_pru
} fi;
if (test "$BD_PRO" = "") then {
export BD_PRO=siasom_pro
} fi;
# Despliegue común desarrollo y producción
if (test "$CONFIG_HOSTS" = "") then {
export CONFIG_HOSTS=192.168.10.1
} fi;
if (test "$RUTA_RELATIVA" = "") then {
export RUTA_RELATIVA=/asom/si/
} fi;
if (test "$DIRAP" = "") then {
export DIRAP="$HOME/comp/rails/si_asom/"
} fi;
if (test "$RAILS_ENV" = "") then {
export RAILS_ENV=development
} fi;
# Para pruebas
if (test "$PUERTOPRU" = "") then {
export PUERTOPRU=31311
} fi;
if (test "$MSIP_REPORTEREGRESION" = "") then {
# Tipicamente en aplicacines msip:reporteregresion y
# en motores app:msip:reporteregresion pero hay motores extraños
# que requieren msip:reporteregresion
export MSIP_REPORTEREGRESION="msip:reporteregresion"
} fi;
# 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=siasom
} fi;
if (test "$PUERTOUNICORN" = "") then {
export PUERTOUNICORN=3015
} fi;
if (test "$USUARIO_AP" = "") then {
export USUARIO_AP=miusuario
} fi;
if (test "$SECRET_KEY_BASE" = "") then {
export SECRET_KEY_BASE=123456789abcdef
} 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/heb412
} fi;
# Configuraciones requeridas por cor1440
if (test "$COR1440_PERMISOS_POR_OFICINA" = "") then {
export COR1440_PERMISOS_POR_OFICINA=1
} fi;
# Configuraciones de sivel2
if (test "$SIVEL2_CONSWEB_PUBLICA" = "") then {
export SIVEL2_CONSWEB_PUBLICA=
} fi;
if (test "$SIVEL2_CONSWEB_MAX" = "") then {
export SIVEL2_CONSWEB_MAX=2000
} fi;
if (test "$SIVEL2_CONSWEB_EPILOGO" = "") then {
export SIVEL2_CONSWEB_EPILOGO="<br>Si requiere más puede suscribirse a SIVeL Pro"
} fi;
if (test "$SIVEL2_MAPAOSM_DIASATRAS" = "") then {
export SIVEL2_MAPAOSM_DIASATRAS=182
} fi;