ext
This commit is contained in:
1
data/ringsdb.json
Normal file
1
data/ringsdb.json
Normal file
File diff suppressed because one or more lines are too long
50
docker-compose.yaml
Normal file
50
docker-compose.yaml
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
version: "3.6"
|
||||||
|
services:
|
||||||
|
postgres:
|
||||||
|
image: postgres:15
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- db_data:/var/lib/postgresql/data
|
||||||
|
environment:
|
||||||
|
POSTGRES_PASSWORD: lotrlcgpassword
|
||||||
|
graphql-engine:
|
||||||
|
image: hasura/graphql-engine:v2.28.0
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
## postgres database to store Hasura metadata
|
||||||
|
HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://postgres:lotrlcgpassword@postgres:5432/postgres
|
||||||
|
## this env var can be used to add the above postgres database to Hasura as a data source. this can be removed/updated based on your needs
|
||||||
|
PG_DATABASE_URL: postgres://postgres:lotrlcgpassword@postgres:5432/postgres
|
||||||
|
## enable the console served by server
|
||||||
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
|
||||||
|
## enable debugging mode. It is recommended to disable this in production
|
||||||
|
HASURA_GRAPHQL_DEV_MODE: "true"
|
||||||
|
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
|
||||||
|
## uncomment next line to run console offline (i.e load console assets from server instead of CDN)
|
||||||
|
# HASURA_GRAPHQL_CONSOLE_ASSETS_DIR: /srv/console-assets
|
||||||
|
## uncomment next line to set an admin secret
|
||||||
|
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
||||||
|
HASURA_GRAPHQL_METADATA_DEFAULTS: '{"backend_configs":{"dataconnector":{"athena":{"uri":"http://data-connector-agent:8081/api/v1/athena"},"mariadb":{"uri":"http://data-connector-agent:8081/api/v1/mariadb"},"mysql8":{"uri":"http://data-connector-agent:8081/api/v1/mysql"},"oracle":{"uri":"http://data-connector-agent:8081/api/v1/oracle"},"snowflake":{"uri":"http://data-connector-agent:8081/api/v1/snowflake"}}}}'
|
||||||
|
depends_on:
|
||||||
|
data-connector-agent:
|
||||||
|
condition: service_healthy
|
||||||
|
data-connector-agent:
|
||||||
|
image: hasura/graphql-data-connector:v2.28.0
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8081:8081
|
||||||
|
environment:
|
||||||
|
QUARKUS_LOG_LEVEL: ERROR # FATAL, ERROR, WARN, INFO, DEBUG, TRACE
|
||||||
|
## https://quarkus.io/guides/opentelemetry#configuration-reference
|
||||||
|
QUARKUS_OPENTELEMETRY_ENABLED: "false"
|
||||||
|
## QUARKUS_OPENTELEMETRY_TRACER_EXPORTER_OTLP_ENDPOINT: http://jaeger:4317
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:8081/api/v1/athena/health"]
|
||||||
|
interval: 5s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 5
|
||||||
|
start_period: 5s
|
||||||
|
volumes:
|
||||||
|
db_data:
|
@ -25,7 +25,7 @@ func main() {
|
|||||||
defer jsonFile.Close()
|
defer jsonFile.Close()
|
||||||
|
|
||||||
byteValue, _ := ioutil.ReadAll(jsonFile)
|
byteValue, _ := ioutil.ReadAll(jsonFile)
|
||||||
c := []types.Card{}
|
c := []types.HallOfBeornCard{}
|
||||||
json.Unmarshal(byteValue, &c)
|
json.Unmarshal(byteValue, &c)
|
||||||
spew.Dump(c)
|
spew.Dump(c)
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package types
|
package types
|
||||||
|
|
||||||
type Card struct {
|
type HallOfBeornCard struct {
|
||||||
PackCode string `json:"pack_code"`
|
PackCode string `json:"pack_code"`
|
||||||
PackName string `json:"pack_name"`
|
PackName string `json:"pack_name"`
|
||||||
IsOfficial bool `json:"is_official"`
|
IsOfficial bool `json:"is_official"`
|
||||||
@ -27,9 +27,4 @@ type Card struct {
|
|||||||
HasErrata bool `json:"has_errata"`
|
HasErrata bool `json:"has_errata"`
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Imagesrc string `json:"imagesrc"`
|
Imagesrc string `json:"imagesrc"`
|
||||||
Versions []struct {
|
|
||||||
SetName string `json:"set_name"`
|
|
||||||
Year string `json:"year"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
} `json:"versions"`
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user