-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.plantilla
146 lines (127 loc) · 3.76 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/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=sifasol_des
} fi;
if (test "$BD_PRUEBA" = "") then {
export BD_PRUEBA=sifasol_pru
} fi;
if (test "$BD_PRO" = "") then {
export BD_PRO=sifasol_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=/fasol/si/
} fi;
if (test "$DIRAP" = "") then {
export DIRAP=/var/www/htdocs/si_fasol
} 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;
if (test "$WEB_CONSOLE_PERMISSIONS" = "") then {
export WEB_CONSOLE_PERMISSIONS="" # Ponga IP desde la cual abrir consola
} fi;
# Despliegue en modo producción con unicorn
if (test "$RC" = "") then {
export RC=sifasol
} fi;
if (test "$PUERTOUNICORN" = "") then {
export PUERTOUNICORN=3015
} fi;
if (test "$USUARIO_AP" = "") then {
export USUARIO_AP=miusuario
} 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"
} 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;
if (test "$MSIP_TITULO" = "") then {
export MSIP_TITULO="SISFASOL"
} fi;
# Configuraciones requeridas por heb412
if (test "$HEB412_RUTA" = "") then {
export HEB412_RUTA=${DIRAP}/public/heb412
} 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_CONSWEB_PIE" = "") then {
export SIVEL2_CONSWEB_PIE=''
} fi;
if (test "$SIVEL2_MAPAOSM_DIASATRAS" = "") then {
export SIVEL2_MAPAOSM_DIASATRAS=182
} fi;
# Exportación a otro servidor
if (test "$SIVEL2_EXP_USUARIO" = "") then {
export SIVEL2_EXP_USUARIO=miusuario
} fi;
if (test "$SIVEL2_MAPAFUENTE" = "") then {
export SIVEL2_MAPAFUENTE="FASOL"
} fi;
if (test "$COR1440_PF_COMUNES" = "") then {
export COR1440_PF_COMUNES=11
# Número de proyecto de actividades comunes
} fi;
if (test "$COR1440_PF_TODAACTC" = "") then {
export COR1440_PF_TODAACT=10
# Número de proyecto por agregar a toda nueva actividad
} fi;
if (test "$COR1440_PF_CALIDAD" = "") then {
export COR1440_PF_TODAACT=12
# Número de proyecto con sistema de calidad
} fi;