evaluacion_cumplido_prov_crud
Repositorio de evaluación cumplidos proveedores crud que permite gestionar la evaluación a proveedor.
Especificaciones Técnicas
Tecnologías Implementadas y Versiones
Variables de Entorno
# parametros de api
EVALUACION_CUMPLIDO_PROV_CRUD_HTTP_PORT=[Puerto de exposición del API]
EVALUACION_CUMPLIDO_PROV_CRUD_RUN_MODE=[Modo de ejecución del API]
# paramametros de bd
EVALUACION_CUMPLIDO_PROV_CRUD_PGUSER=[Usuario de BD]
EVALUACION_CUMPLIDO_PROV_CRUD_PGPASS=[Contraseña del usaurio de BD]
EVALUACION_CUMPLIDO_PROV_CRUD_PGHOST=[URL, Dominio o EndPoint de la BD]
EVALUACION_CUMPLIDO_PROV_CRUD_PGPORT=[Puerto de la BD]
EVALUACION_CUMPLIDO_PROV_CRUD_PGDB=[Nombre de Base de Datos]
EVALUACION_CUMPLIDO_PROV_CRUD_PGSCHEMA=[Nombre del Esquema de Base de Datos]
**NOTA:** Las variables se pueden ver en el fichero conf/app.conf y están identificadas con EVALUACION_CUMPLIDO_PROV_CRUD...
### Ejecución del Proyecto
```shell
#1. Obtener el repositorio con Go
go get github.com/udistrital/evaluacion_cumplido_prov_crud
#2. Moverse a la carpeta del repositorio
cd $GOPATH/src/github.com/udistrital/evaluacion_cumplido_prov_crud
# 3. Moverse a la rama **develop**
git pull origin develop && git checkout develop
# 4. alimentar todas las variables de entorno que utiliza el proyecto.
EVALUACION_CUMPLIDO_PROV_CRUD_HTTP_PORT=8080 EVALUACION_CUMPLIDO_PROV_CRUD_SOME_VARIABLE bee run
### Ejecución Dockerfile
```shell
# docker build --tag=evaluacion_cumplido_prov_crud . --no-cache
# docker run -p 80:80 evaluacion_cumplido_prov_crud
Ejecución docker-compose
# 1. Obtener repositorio
git clone https://github.com/udistrital/evaluacion_cumplido_prov_crud.git
# 2. Ir a la carpeta del repositorio
cd $GOPATH/src/github.com/udistrital/evaluacion_cumplido_prov_crud
# 3. Cambiar a la rama develop
git checkout develop
# 4. Crear red back_end
docker network create back_end
# 5. Ejecutar docker compose
docker-compose up --build --remove-orphans
### Ejecución Pruebas
Pruebas unitarias
```shell
# En Proceso
Estado CI
Develop |
Relese 0.0.1 |
Master |
|
|
|
Licencia
This file is part of cumplidos_crud.
cumplidos_crud is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
cumplidos_crud is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with novedades_crud. If not, see https://www.gnu.org/licenses/.