This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See https://github.com/contiamo/restful-react/issues/226 | |
// for a discussion about including this in restful-react | |
var fs = require("fs"); | |
function capitalize(s) { | |
if (typeof s !== "string") return ""; | |
return s.charAt(0).toUpperCase() + s.slice(1); | |
} | |
const importAlias = "gen"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM grafana/build-container:1.2.4 as build | |
WORKDIR /go/src/github.com/grafana/grafana | |
COPY . . | |
RUN /tmp/bootstrap.sh | |
RUN ./scripts/build/build.sh | |
# The rest of this file is essentially copy/paste of the real packages/Dockerfile | |
FROM debian:stretch-slim as extractor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"consumes": [ | |
"application/json" | |
], | |
"definitions": { | |
"aggregationListAggregationsResponse": { | |
"description": "The filtered aggregation configurations response", | |
"properties": { | |
"count": { | |
"format": "int64", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: "3.0.0" | |
info: | |
version: 1.0.0 | |
title: keyword test | |
license: | |
name: MIT | |
paths: | |
/pets: | |
post: | |
summary: Create a pet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://d3js.org | |
http://54.183.106.28/datavis_study/ |