Added Mitanand server to server list
All checks were successful
Amarillo/amarillo-gitea/amarillo-core/pipeline/head This commit looks good

This commit is contained in:
Csaba 2024-01-18 11:12:50 +01:00
parent 38e33e461c
commit 4d909ee62c
3 changed files with 7 additions and 2 deletions

3
Jenkinsfile vendored
View file

@ -7,7 +7,8 @@ pipeline {
DOCKER_REGISTRY_URL = 'https://git.gerhardt.io' DOCKER_REGISTRY_URL = 'https://git.gerhardt.io'
OWNER = 'amarillo' OWNER = 'amarillo'
IMAGE_NAME = 'amarillo' IMAGE_NAME = 'amarillo'
TAG = "${BUILD_NUMBER}" AMARILLO_DISTRIBUTION = '0.1'
TAG = "${AMARILLO_DISTRIBUTION}.${BUILD_NUMBER}"
PLUGINS = 'amarillo-metrics amarillo-enhancer' PLUGINS = 'amarillo-metrics amarillo-enhancer'
DEPLOY_WEBHOOK_URL = 'http://amarillo.mfdz.de:8888/mitanand' DEPLOY_WEBHOOK_URL = 'http://amarillo.mfdz.de:8888/mitanand'
DEPLOY_SECRET = credentials('AMARILLO-JENKINS-DEPLOY-SECRET') DEPLOY_SECRET = credentials('AMARILLO-JENKINS-DEPLOY-SECRET')

View file

@ -69,6 +69,10 @@ app = FastAPI(title="Amarillo - The Carpooling Intermediary",
"description": "Dev server for development", "description": "Dev server for development",
"url": "https://amarillo-dev.mfdz.de" "url": "https://amarillo-dev.mfdz.de"
}, },
{
"description": "Server for Mitanand project",
"url": "https://mitanand.mfdz.de"
},
{ {
"description": "Localhost for development", "description": "Localhost for development",
"url": "http://localhost:8000" "url": "http://localhost:8000"

View file

@ -1,6 +1,6 @@
[project] [project]
name = "amarillo-core" name = "amarillo-core"
version = "0.0.12" version = "0.0.13"
dependencies = [ dependencies = [
"fastapi[all]==0.104.0", "fastapi[all]==0.104.0",
"geopandas==0.14", "geopandas==0.14",