feat: open-trip-api-drink #11

Merged
Clement merged 34 commits from feat/open-trip-api into master 2024-05-19 09:38:39 +00:00
24 changed files with 1951 additions and 27 deletions

View File

@ -17,3 +17,5 @@ jobs:
custom-title: Coverage report for backend custom-title: Coverage report for backend
github-token: ${{ secrets.PR_TOCKEN}} github-token: ${{ secrets.PR_TOCKEN}}
annotations: none #disable annotation annotations: none #disable annotation
env:
OPEN_TRIP_MAPS_KEY: ${{ secrets.OPEN_TRIP_MAPS_KEY}}

View File

@ -43,11 +43,15 @@ USER node
# go to work folder # go to work folder
WORKDIR /home/node WORKDIR /home/node
ARG port
ENV env_port $port
# Expose port # Expose port
EXPOSE 3000 EXPOSE $port
# Add Healthcheck # Add Healthcheck
HEALTHCHECK --interval=10s --timeout=10s --start-period=5s --retries=3 CMD wget --no-verbose --tries=1 --spider http://localhost:3000 || exit 1 HEALTHCHECK --interval=10s --timeout=10s --start-period=5s --retries=3 CMD wget --no-verbose --tries=1 --spider http://localhost:$port || exit 1
# copy from build image # copy from build image
COPY --chown=node:node --from=BUILD_IMAGE /home/node/node_modules ./node_modules COPY --chown=node:node --from=BUILD_IMAGE /home/node/node_modules ./node_modules

View File

@ -1,5 +1,6 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */ /** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = { module.exports = {
testTimeout: 10000,
preset: 'ts-jest', preset: 'ts-jest',
testEnvironment: 'node', testEnvironment: 'node',
collectCoverage: true, collectCoverage: true,

View File

@ -6,10 +6,15 @@
"allowUnknownTags": true "allowUnknownTags": true
}, },
"plugins": [ "plugins": [
"node_modules/better-docs/typescript" "node_modules/better-docs/typescript",
"plugins/markdown",
"jsdoc-mermaid"
], ],
"source": { "source": {
"include": ["./src"], "include": ["./src"],
"includePattern": "\\.(jsx|js|ts|tsx)$" "includePattern": "\\.(jsx|js|ts|tsx)$"
},
"templates": {
"search": true
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -5,12 +5,15 @@
"start": "node dist/src/server.js", "start": "node dist/src/server.js",
"predev": "npm run build", "predev": "npm run build",
"dev": "npx tsc -w & nodemon dist/src/server.js", "dev": "npx tsc -w & nodemon dist/src/server.js",
"predocs": "npm run build",
"docs": "jsdoc -c jsdoc.json", "docs": "jsdoc -c jsdoc.json",
"test": "jest" "pretest": "npm run build",
"test": "ts-node -O '{\"module\":\"commonjs\"}' node_modules/jest/bin/jest.js"
}, },
"dependencies": { "dependencies": {
"@types/express": "^4.17.21", "@types/express": "^4.17.21",
"@types/node": "^20.12.7", "@types/node": "^20.12.7",
"axios": "^1.6.8",
"dotenv": "^16.4.5", "dotenv": "^16.4.5",
"express": "^4.19.2", "express": "^4.19.2",
"rimraf": "^5.0.5", "rimraf": "^5.0.5",
@ -19,16 +22,20 @@
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "^29.5.12", "@types/jest": "^29.5.12",
"@types/rewire": "^2.5.30",
"@types/supertest": "^6.0.2", "@types/supertest": "^6.0.2",
"babel-cli": "^6.26.0", "babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0", "babel-preset-env": "^1.7.0",
"better-docs": "^2.7.3", "better-docs": "^2.7.3",
"jest": "^29.7.0", "jest": "^29.7.0",
"jsdoc": "^4.0.3", "jsdoc": "^4.0.3",
"jsdoc-mermaid": "^1.0.0",
"nodemon": "^3.1.0", "nodemon": "^3.1.0",
"rewire": "^7.0.0",
"superagent": "^9.0.2", "superagent": "^9.0.2",
"supertest": "^7.0.0", "supertest": "^7.0.0",
"ts-jest": "^29.1.2", "ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13", "typedoc": "^0.25.13",
"typescript": "^5.4.5" "typescript": "^5.4.5"
} }

View File

@ -1,3 +1,4 @@
import { getCity, getRadius, getPoiId, getBox } from "./openTripMaps"
import express from "express" import express from "express"
/** /**
* Initialize Express application instance. * Initialize Express application instance.
@ -22,6 +23,7 @@ function getWelcome(req: express.Request, res: express.Response) {
* @openapi * @openapi
* /welcome: * /welcome:
* get: * get:
* summary: retun just hello
* description: Welcome to swagger-jsdoc! * description: Welcome to swagger-jsdoc!
* responses: * responses:
* 200: * 200:
@ -29,4 +31,137 @@ function getWelcome(req: express.Request, res: express.Response) {
*/ */
app.get("/welcome", getWelcome) app.get("/welcome", getWelcome)
/**
* @openapi
* /otm/city:
* get:
* summary: return the drinks in a city
* description: return the drinks in a defined perimeter in a city
* parameters:
* - name: name
* in: query
* required: true
* description: the name of the city
* schema:
* type: string
* responses:
* 200:
* description: Return a list of bars and coffee in city in geoJSON format
* 400:
* description: Missing Argument Error
* 401:
* description: Missing OTM tocken
*/
app.get("/otm/city", getCity)
/**
* @openapi
* /otm/radius:
* get:
* summary: return the drinks in a radius
* description: return the drinks in a defined radius
* parameters:
* - name: lon
* in: query
* required: true
* description: longitude of the center of the radius
* schema:
* type: number
* minimum: -180
* maximum: 180
* - name: lat
* in: query
* required: true
* description: latitude of the center of the radius
* schema:
* type: number
* minimum: -90
* maximum: 90
* - name: radius
* in: query
* description: size of the radius
* responses:
* 200:
* description: Return a list of bars and coffee in city in geoJSON format
* 400:
* description: Missing Argument Error
* 401:
* description: Missing OTM tocken
*/
app.get("/otm/radius", getRadius)
/**
* @openapi
* /otm/poidetaill:
* get:
* summary: detail of a POI
* description: detail of a POI link name, kind, rate,...
* parameters:
* - name: id
* in: query
* required: true
* description: Unique identifier of the object in OpenTripMap
* schema:
* type: string
* responses:
* 200:
* description: Return the detaill of an POI in otm
* 400:
* description: Missing Argument Error
* 401:
* description: Missing OTM tocken
*/
app.get("/otm/poidetaill", getPoiId)
/**
* @openapi
* /otm/box:
* get:
* summary: return the drinks in a box
* description: return the drinks in a defined box
* parameters:
* - name: lon1
* in: query
* required: true
* description: longitude 1 of the box
* schema:
* type: number
* minimum: -180
* maximum: 180
* - name: lat1
* in: query
* required: true
* description: latitude 1 of the box
* schema:
* type: number
* minimum: -90
* maximum: 90
* - name: lon2
* in: query
* required: true
* description: longitude 2 of the box
* schema:
* type: number
* minimum: -180
* maximum: 180
* - name: lat2
* in: query
* required: true
* description: latitude 2 of the box
* schema:
* type: number
* minimum: -90
* maximum: 90
* responses:
* 200:
* description: Return a list of bars and coffee in city in geoJSON format
* 400:
* description: Missing Argument Error
* 401:
* description: Missing OTM tocken
*/
app.get("/otm/box", getBox)
export default app export default app

View File

@ -0,0 +1,193 @@
import axios from 'axios'
import express from "express"
import * as dotenv from "dotenv"
dotenv.config({path: '../../.env'})
const key = process.env.OPEN_TRIP_MAPS_KEY
/**
* make a GET request to the OTM for a rectangle search.
* @param {string} lon1 Longitude of the 1st point of the box
* @param {string} lat1 Latitude of the 1st point of the box
* @param {string} lon2 Longitude of the 2nd point of the box
* @param {string} lat2 Latitude of the 2nd point of the box
* @returns {FeatureCollection} a list of POIs with their type, id, etc. (cf: [opentripmap](https://dev.opentripmap.org/docs#))
*/
async function callBox(lon1:string, lat1:string, lon2: string, lat2: string) {
const lonMin = Math.min(parseFloat(lon1), parseFloat(lon2))
const lonMax = Math.max(parseFloat(lon1), parseFloat(lon2))
const latMin = Math.min(parseFloat(lat1), parseFloat(lat2))
const latMax = Math.max(parseFloat(lat1), parseFloat(lat2))
const options = {
method: 'GET',
url: 'https://api.opentripmap.com/0.1/en/places/bbox',
params: {
lon_min: lonMin,
lon_max: lonMax,
lat_min: latMin,
lat_max: latMax,
apikey: key,
kinds: 'bars,cafes,pubs,biergartens'
},
headers: {'Content-Type': 'application/json'}
}
try {
const { data } = await axios.request(options)
return data
} catch (error) {
console.error(error)
}
}
/**
* make GET request to the OTM for radius search.
* @param {string} lon Longitude of radius center point
* @param {string} lat Latitude du point central du rayon
* @param {string} radius search radius size in meters
* @returns {FeatureCollection} a list of POIs with their type, id, etc. (cf: [opentripmap](https://dev.opentripmap.org/docs#))
*/
async function callRadius(lon: string, lat: string, radius = '1000') {
const optionsDrink = {
method: 'GET',
url: 'https://api.opentripmap.com/0.1/en/places/radius',
params: {
radius: radius,
lon: lon,
lat: lat,
apikey: key,
kinds: 'bars,cafes,pubs,biergartens'
},
headers: {'Content-Type': 'application/json'}
}
try {
const { data } = await axios.request(optionsDrink)
return data
} catch (error) {
console.error(error)
}
}
/**
* make GET request to the OTM for city info.
* @param {string} name Name of a city
* @returns {Geoname} info of a search city their name, country, lat, lon, etc. (cf: [opentripmap](https://dev.opentripmap.org/docs#))
*/
async function callCity(name:string) {
const optionsCity = {
method: 'GET',
url: 'https://api.opentripmap.com/0.1/en/places/geoname',
params: {
name: name,
apikey: key
},
headers: {'Content-Type': 'application/json'}
}
try {
const { data } = await axios.request(optionsCity)
return data
} catch (error) {
console.error(error)
}
}
/**
* make GET request to the OTM for city info.
* @param {string} name Name of a city
* @returns {Geoname} info of a search city their name, country, lat, lon, etc. (cf: [opentripmap](https://dev.opentripmap.org/docs#))
*/
async function callId(id:string) {
const optionsId = {
method: 'GET',
url: 'https://api.opentripmap.com/0.1/en/places/xid/' + id,
params: {
apikey: key
},
headers: {'Content-Type': 'application/json'}
}
try {
const { data } = await axios.request(optionsId)
return data
} catch (error) {
console.error(error)
}
}
/**
* Handle GET request for city search route ('/otm/city').
* @param {express.Request} req - HTTP Request object.
* @param {express.Response} res - HTTP Response object.
*/
export async function getCity(req: express.Request, res: express.Response) {
const cityName = req.query["name"]
let radius = req.query["radius"]
if(!cityName){
res.status(400).send("Missing Argument name")
return
}
if(!radius){
radius = "1000"
}
const cityPose = await callCity(cityName as string)
res.send( await callRadius(cityPose.lon,cityPose.lat, radius as string))
}
/**
* Handle GET request for radius search route ('/otm/radius').
* @param {express.Request} req - HTTP Request object.
* @param {express.Response} res - HTTP Response object.
*/
export async function getRadius(req:express.Request, res: express.Response) {
const lon = req.query["lon"] as string
const lat = req.query["lat"] as string
let radius = req.query["radius"]
if(!lon || !lat){
res.status(400).send("Missing Argument")
return
}
if(!radius){
radius = "1000"
}
res.send( await callRadius(lon,lat,radius as string))
}
/**
* Handle GET request for radius search route ('/otm/radius').
* @param {express.Request} req - HTTP Request object.
* @param {express.Response} res - HTTP Response object.
*/
export async function getPoiId(req: express.Request, res: express.Response){
const id = req.query["id"] as string
if(!id){
res.status(400).send("Missing Argument name")
return
}
res.send( await callId( id as string))
}
/**
* Handle GET request for radius search route ('/otm/box').
* @param {express.Request} req - HTTP Request object.
* @param {express.Response} res - HTTP Response object.
*/
export async function getBox(req:express.Request, res: express.Response) {
const lon1 = req.query["lon1"] as string
const lat1 = req.query["lat1"] as string
const lon2 = req.query["lon2"] as string
const lat2 = req.query["lat2"] as string
if(!lon1 || !lat1 || !lon2 || !lat2){
res.status(400).send("Missing Argument")
return
}
res.send( await callBox(lon1, lat1, lon2, lat2))
}
//TODO: fair une route ou l'on donne 2 coordonée

View File

@ -16,6 +16,9 @@ const options = {
{ {
url: "http://localhost:"+port.toString(), url: "http://localhost:"+port.toString(),
}, },
{
url: "https://drink-tweb.cb85.fr"
}
], ],
}, },
apis: ['./src/*.ts'], apis: ['./src/*.ts'],

View File

@ -10,17 +10,7 @@ let serveur : Server<typeof IncomingMessage, typeof ServerResponse>
describe("Test the welcome path", () => { describe("Test the welcome path", () => {
beforeEach(() => { test("It should response the 200 code for GET method", done => {
serveur = app.listen(port, () =>{
console.log(`serveur running in ${port}`)
})
})
afterEach((done) => {
serveur.close(done)
})
test("It should response the GET method", done => {
request(app) request(app)
.get("/welcome") .get("/welcome")
.then(response => { .then(response => {
@ -29,7 +19,7 @@ describe("Test the welcome path", () => {
}); });
}); });
test("It should response the GET method", done => { test("It should response the GET method with content", done => {
const out = {hello:"world"}; const out = {hello:"world"};
request(app) request(app)
.get("/welcome") .get("/welcome")

View File

@ -0,0 +1,272 @@
import request from "supertest"
import app from "../src/app"
import { Server, IncomingMessage, ServerResponse } from "http"
import * as dotenv from "dotenv"
dotenv.config({path: '../../.env'})
const port = parseInt(process.env.BAR_PORT || '3000')
let serveur : Server<typeof IncomingMessage, typeof ServerResponse>
describe("Test the otm city path", () => {
test("It should response the 200 code for GET method", done => {
request(app)
.get("/otm/city")
.query({'name':'La roche sur yon'})
.then(response => {
expect(response.statusCode).toBe(200)
done()
})
})
test("It should response the GET method with content", done => {
const out = {
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"id": "562635",
"geometry": {
"type": "Point",
"coordinates": [
-1.4344594,
46.6686478
]
},
"properties": {
"xid": "N4032296324",
"name": "Le 27 point carré",
"dist": 236.40360026,
"rate": 1,
"osm": "node/4032296324",
"kinds": "foods,bars,tourist_facilities"
}
}]
}
request(app)
.get("/otm/city")
.query({'name':'La roche sur yon', "radius": 240})
.then(response => {
console.log(response.text)
expect(response.text).toEqual(JSON.stringify(out))
done()
})
})
test("It should response the 400 code for GET method", done => {
request(app)
.get("/otm/city")
.then(response => {
console.log(response.text)
expect(response.statusCode).toBe(400)
done()
})
})
test("It should response the 200 code for GET method", done => {
request(app)
.get("/otm/radius")
.query({'lon':'-1.4344594', 'lat' : '46.6686478', 'radius': '10'})
.then(response => {
expect(response.statusCode).toBe(200)
done()
})
})
test("It should response the 200 code for GET method (default radius)", done => {
request(app)
.get("/otm/radius")
.query({'lon':'-1.4344594', 'lat' : '46.6686478'})
.then(response => {
expect(response.statusCode).toBe(200)
done()
})
})
test("It should response the 400 code for GET method (missing lon and lat)", done => {
request(app)
.get("/otm/radius")
.then(response => {
expect(response.statusCode).toBe(400)
done()
})
})
test("Get bar in radius from API", done => {
const out = {
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"id": "562635",
"geometry": {
"type": "Point",
"coordinates": [
-1.4344594,
46.6686478
]
},
"properties": {
"xid": "N4032296324",
"name": "Le 27 point carré",
"dist": 0.17652159,
"rate": 1,
"osm": "node/4032296324",
"kinds": "foods,bars,tourist_facilities"
}
}]
}
request(app)
.get("/otm/radius")
.query({'lon':'-1.4344594', 'lat' : '46.6686478', 'radius': '10'})
.then(response => {
expect(response.text).toEqual(JSON.stringify(out))
done()
})
})
test("It should response the 200 code for GET method", done => {
request(app)
.get("/otm/poidetaill")
.query({'id':'562635'})
.then(response => {
expect(response.statusCode).toBe(200)
done()
})
})
test("Get bar in radius from API", done => {
const out = {
"xid": "N4032296324",
"name": "Le 27 point carré",
"address": {
"road": "Rue Raymond Poincaré",
"town": "La Roche-sur-Yon",
"state": "Pays de la Loire",
"county": "La Roche-sur-Yon",
"suburb": "Zola",
"country": "France",
"postcode": "85000",
"country_code": "fr",
"house_number": "27",
"neighbourhood": "Cité des Forges"
},
"rate": "1",
"osm": "node/4032296324",
"kinds": "foods,bars,tourist_facilities",
"sources": {
"geometry": "osm",
"attributes": [
"osm"
]
},
"otm": "https://opentripmap.com/en/card/N4032296324",
"point": {
"lon": -1.4344594478607178,
"lat": 46.66864776611328
}
}
request(app)
.get("/otm/poidetaill")
.query({'id':'562635'})
.then(response => {
expect(response.text).toEqual(JSON.stringify(out))
done()
})
})
test("It should response the 400 code for GET method (no id)", done => {
request(app)
.get("/otm/poidetaill")
.then(response => {
expect(response.statusCode).toBe(400)
done()
})
})
test("It should response the 200 code for GET method", done => {
request(app)
.get("/otm/box")
.query({'lon1':'-1.435199','lon2':'-1.43519', 'lat1':'46.668460', 'lat2':'46.668461'})
.then(response => {
expect(response.statusCode).toBe(200)
done()
})
})
test("Get bar in box from API", done => {
const out = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": "562633",
"geometry": {
"type": "Point",
"coordinates": [
-1.435197,
46.6684608
]
},
"properties": {
"xid": "N4032296323",
"name": "Le Cube",
"rate": 1,
"osm": "node/4032296323",
"kinds": "foods,cafes,tourist_facilities"
}
}
]
}
request(app)
.get("/otm/box")
.query({'lon1':'-1.435199','lon2':'-1.43519', 'lat1':'46.668460', 'lat2':'46.668461'})
.then(response => {
expect(response.text).toEqual(JSON.stringify(out))
done()
})
})
test("Get bar in box from API lat reversed", done => {
const out = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": "562633",
"geometry": {
"type": "Point",
"coordinates": [
-1.435197,
46.6684608
]
},
"properties": {
"xid": "N4032296323",
"name": "Le Cube",
"rate": 1,
"osm": "node/4032296323",
"kinds": "foods,cafes,tourist_facilities"
}
}
]
}
request(app)
.get("/otm/box")
.query({'lon1':'-1.435199','lon2':'-1.43519', 'lat2':'46.668460', 'lat1':'46.668461'})
.then(response => {
expect(response.text).toEqual(JSON.stringify(out))
done()
})
})
test("It should response the 400 code for GET method (no coordonaite)", done => {
request(app)
.get("/otm/box")
.then(response => {
expect(response.statusCode).toBe(400)
done()
})
})
})

View File

@ -1,3 +1,7 @@
vars {
TRIPMAP_URL: https://api.opentripmap.com/0.1
}
vars:secret [ vars:secret [
app_key app_key,
OTM_KEY
] ]

View File

@ -1,7 +1,7 @@
meta { meta {
name: express test name: express Drink OTM
type: http type: http
seq: 3 seq: 4
} }
get { get {

View File

@ -0,0 +1,20 @@
meta {
name: otm_ex_box
type: http
seq: 4
}
get {
url: http://localhost:3001/otm/box?lon1=-1.435199&lon2=-1.43519&lat1=46.668460&lat2=46.668461&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
lon1: -1.435199
lon2: -1.43519
lat1: 46.668460
lat2: 46.668461
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,16 @@
meta {
name: otm_ex_city
type: http
seq: 1
}
get {
url: http://localhost:3001/otm/city?name=La roche sur yon&radius=300
body: none
auth: none
}
query {
name: La roche sur yon
radius: 300
}

View File

@ -0,0 +1,15 @@
meta {
name: otm_ex_drink_id
type: http
seq: 2
}
get {
url: https://api.opentripmap.com/0.1/en/places/xid/562635?apikey={{OTM_KEY}}
body: none
auth: none
}
query {
apikey: {{OTM_KEY}}
}

View File

@ -0,0 +1,16 @@
meta {
name: otm_ex_radius
type: http
seq: 3
}
get {
url: http://localhost:3001/otm/city?name=La roche sur yon&radius=300
body: none
auth: none
}
query {
name: La roche sur yon
radius: 300
}

View File

@ -0,0 +1,19 @@
meta {
name: otm_drink
type: http
seq: 1
}
get {
url: {{TRIPMAP_URL}}/en/places/radius?radius=10&lon=-1.4344594&lat=46.6686478&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
radius: 10
lon: -1.4344594
lat: 46.6686478
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,19 @@
meta {
name: otm_drink_bbox
type: http
seq: 4
}
get {
url: {{TRIPMAP_URL}}/en/places/radius?radius=10&lon=-1.4344594&lat=46.6686478&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
radius: 10
lon: -1.4344594
lat: 46.6686478
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,15 @@
meta {
name: otm_drink_id
type: http
seq: 3
}
get {
url: https://api.opentripmap.com/0.1/en/places/xid/562635?apikey={{OTM_KEY}}
body: none
auth: none
}
query {
apikey: {{OTM_KEY}}
}

View File

@ -0,0 +1,20 @@
meta {
name: otm_location
type: http
seq: 2
}
get {
url: https://api.opentripmap.com/0.1/en/places/bbox?lon_min=-1.435199&lon_max=-1.43519&lat_min=46.668460&lat_max=46.668461&apikey={{OTM_KEY}}&kinds=bars,cafes,pubs,biergartens
body: none
auth: none
}
query {
lon_min: -1.435199
lon_max: -1.43519
lat_min: 46.668460
lat_max: 46.668461
apikey: {{OTM_KEY}}
kinds: bars,cafes,pubs,biergartens
}

View File

@ -0,0 +1,22 @@
meta {
name: test graphQL
type: graphql
seq: 3
}
post {
url: https://datatour-tweb.cb85.fr
body: graphql
auth: none
}
body:graphql {
{
poi {
total
results {
_uri
}
}
}
}

@ -1 +1 @@
Subproject commit fb594bfd7c715a891f076750403e3a439b804468 Subproject commit b3bc1fdc68a325905f6d466e860732466d8e750a

View File

@ -31,6 +31,8 @@ services:
back_drink: back_drink:
image: git.lab-ouest.org/epitech/ratrapage_t-web_back:pr-6-head image: git.lab-ouest.org/epitech/ratrapage_t-web_back:pr-6-head
environment:
- port=${BACK_BASE_PORT}
labels: labels:
- traefik.enable=true - traefik.enable=true
- traefik.http.routers.expressDrinkTweb.rule=Host(`${DRINK_URL}`) - traefik.http.routers.expressDrinkTweb.rule=Host(`${DRINK_URL}`)