forked from TDTP/admin_transporte_backend
32 lines
689 B
Plaintext
32 lines
689 B
Plaintext
# Conexion con base datos principal
|
|
DBHOST=db
|
|
DBPORT=5432
|
|
DBNAME=transporte
|
|
DBSCHEMA=public
|
|
DBUSER=postgres
|
|
DBPASS=password
|
|
|
|
# Conexion con base datos redis
|
|
DB_REDIS_HOST=dbproto
|
|
DB_REDIS_PORT=6379
|
|
|
|
# Conexion con base datos mongo
|
|
DB_MONGO_HOST=dbmongo
|
|
DB_MONGO_PORT=27017
|
|
DB_MONGO_USER=root
|
|
DB_MONGO_PASS=password
|
|
|
|
# Datos de emisor de correos
|
|
SMTP_HOST=smtp-mail.outlook.com
|
|
SMTP_PORT=587
|
|
SMTP_PROTOCOL=tls
|
|
SMTP_USER=francisco.sandoval@outlook.cl
|
|
SMTP_PASS=aigdvnrbueitklry
|
|
SMTP_FROM='"Sistema Transporte" <francisco.sandoval@outlook.cl>'
|
|
|
|
# PATH UPLOAD
|
|
GTFS_UPLOADS=/uploads/gtfs
|
|
PHOTOS_UPLOADS=/uploads/photos
|
|
|
|
# URL INFO PARADERO
|
|
URL_PARADERO='http://localhost:3001/rutaParadero/?id=' |