WIP: feat: add datatourism for prod #5

Draft
Clement wants to merge 3 commits from feat--run-open-data-in-prod into master
5 changed files with 29 additions and 3 deletions

View File

@ -1,3 +1,6 @@
vars {
URL: http://localhost:8080
}
vars:secret [ vars:secret [
app_key app_key
] ]

View File

@ -0,0 +1,3 @@
vars:secret [
URL
]

View File

@ -5,11 +5,11 @@ meta {
} }
post { post {
url: http://localhost:8080 url: {{URL}}
body: graphql body: graphql
auth: none auth: none
} }
body:graphql { body:graphql {
{poi() {results{dc_identifier rdfs_label}}} {poi() {results{dc_identifier, lastUpdate}}}
} }

@ -1 +1 @@
Subproject commit fb594bfd7c715a891f076750403e3a439b804468 Subproject commit af7db7d7a5a3b2936306e0d90dddd353c968d7b0

20
docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
services:
blazegraph:
image: conjecto/blazegraph:2.1.5
# ports:
# - 9999:9999
environment:
JAVA_OPTS: "-Xms6G -Xmx6G"
volumes:
- ./datatourisme/dataset:/docker-entrypoint-initdb.d
ulimits:
nofile:
soft: 65536
hard: 65536
datatourisme:
image: git.lab-ouest.org/epitech/fork-open-data-tourism:master
# ports:
# - "8080:80"
depends_on:
- blazegraph