API CRUD para la gestión de información definida por la organización para las entidades de la universidad.
# parametros de api
API_PORT=[Puerto de exposición del API]
NUXEO_URL=[URL de servidor Nuxeo]
NUXEO_USERNAME=[Usuario de nuxeo]
NUXEO_PASSWORD=[Contraseña usuario nuxeo]
DOCUMENTOS_CRUD_URL=[URL API documentos_crud]NOTA: Las variables se pueden ver en el fichero api.py ...
NOTA 2: Solo para el caso de esta Api el parámetro path del target_group se cambia al valor /v1/
#1. Obtener el repositorio con git
git clone https://github.com/udistrital/gestor_documental_mid.git
#2. Moverse a la carpeta del repositorio
cd gestor_documental_mid
# 3. Moverse a la rama **develop**
git pull origin develop && git checkout develop
# 4. alimentar todas las variables de entorno que utiliza el proyecto.
export API_PORT=8080 NUXEO_URL=https://xxxxxx/nuxeo/ NUXEO_USERNAME=xxxxxxx NUXEO_PASSWORD=xxxxxxx DOCUMENTOS_CRUD_URL=http://xxxxxxxxx/v1/
# 5. instalar dependencias de python
pip install -r requirements.txt
# 6. Ejecutar el api
python api.py# Implementado para despliegue del Sistema de integración continua CI.| Develop | Relese 0.0.1 | Master |
|---|---|---|
This file is part of gestor_documental_mid.
gestor_documental_mid 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.
gestor_documental_mid 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 gestor_documental_mid. If not, see https://www.gnu.org/licenses/.