From 4d909ee62cd35ca19ba4a129d941431a7cead541 Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Thu, 18 Jan 2024 11:12:50 +0100 Subject: [PATCH] Added Mitanand server to server list --- Jenkinsfile | 3 ++- amarillo/app/main.py | 4 ++++ pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e3fccfb..5d81741 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,8 @@ pipeline { DOCKER_REGISTRY_URL = 'https://git.gerhardt.io' OWNER = 'amarillo' IMAGE_NAME = 'amarillo' - TAG = "${BUILD_NUMBER}" + AMARILLO_DISTRIBUTION = '0.1' + TAG = "${AMARILLO_DISTRIBUTION}.${BUILD_NUMBER}" PLUGINS = 'amarillo-metrics amarillo-enhancer' DEPLOY_WEBHOOK_URL = 'http://amarillo.mfdz.de:8888/mitanand' DEPLOY_SECRET = credentials('AMARILLO-JENKINS-DEPLOY-SECRET') diff --git a/amarillo/app/main.py b/amarillo/app/main.py index ebe4a3f..e446224 100644 --- a/amarillo/app/main.py +++ b/amarillo/app/main.py @@ -69,6 +69,10 @@ app = FastAPI(title="Amarillo - The Carpooling Intermediary", "description": "Dev server for development", "url": "https://amarillo-dev.mfdz.de" }, + { + "description": "Server for Mitanand project", + "url": "https://mitanand.mfdz.de" + }, { "description": "Localhost for development", "url": "http://localhost:8000" diff --git a/pyproject.toml b/pyproject.toml index 5a140e2..510409f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "amarillo-core" -version = "0.0.12" +version = "0.0.13" dependencies = [ "fastapi[all]==0.104.0", "geopandas==0.14",