This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Useful celery config. | |
app = Celery('tasks', | |
broker='redis://localhost:6379', | |
backend='redis://localhost:6379') | |
app.conf.update( | |
CELERY_TASK_RESULT_EXPIRES=3600, | |
CELERY_QUEUES=( | |
Queue('default', routing_key='tasks.#'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pasos para descargar el proyecto: | |
crear un entorno virtual en su máquina | |
Entrar a https://github.com/frpk21/MonitoreoDev | |
Hacer click en fork (ya estando logueado con su cuenta de github) | |
Gitlab lo redirecionará a la misma página pero con su Fork, por ejemplo: https://github.com/kandreyrosales/MonitoreoDev | |
Hacer git clone de su forkdentro del entorno virtual (git clone https://github.com/kandreyrosales/MonitoreoDev) | |
Entrar a la carpeta descargada | |
Agregar la siguiente linea: git remote add upstream https://github.com/frpk21/MonitoreoDev (upstream pueden ponerle remoto o rama_principal) | |
git fetch --all (para descargar todas las ramas) |