From 67945d69cb939d299ac3d501f090dcd06a20a864 Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Sun, 2 Jun 2019 14:56:58 +0200 Subject: [PATCH] Move all code to Prometheus repo target dir Signed-off-by: Julius Volz --- .gitignore => web/ui/react-app/.gitignore | 0 README.md => web/ui/react-app/README.md | 0 .../ui/react-app/package-lock.json | 0 package.json => web/ui/react-app/package.json | 0 {public => web/ui/react-app/public}/favicon.ico | Bin {public => web/ui/react-app/public}/index.html | 0 {public => web/ui/react-app/public}/manifest.json | 0 {src => web/ui/react-app/src}/App.css | 0 {src => web/ui/react-app/src}/App.test.js | 0 {src => web/ui/react-app/src}/App.tsx | 0 {src => web/ui/react-app/src}/DataTable.tsx | 0 {src => web/ui/react-app/src}/ExpressionInput.tsx | 0 {src => web/ui/react-app/src}/Graph.tsx | 0 {src => web/ui/react-app/src}/GraphControls.tsx | 0 {src => web/ui/react-app/src}/Legend.tsx | 0 {src => web/ui/react-app/src}/MetricFomat.ts | 0 {src => web/ui/react-app/src}/Panel.tsx | 0 {src => web/ui/react-app/src}/PanelList.tsx | 0 {src => web/ui/react-app/src}/SeriesName.tsx | 0 {src => web/ui/react-app/src}/TimeInput.tsx | 0 {src => web/ui/react-app/src}/globals.ts | 0 {src => web/ui/react-app/src}/index.tsx | 0 {src => web/ui/react-app/src}/react-app-env.d.ts | 0 {src => web/ui/react-app/src}/utils/timeFormat.ts | 0 {src => web/ui/react-app/src}/utils/urlParams.ts | 0 tsconfig.json => web/ui/react-app/tsconfig.json | 0 26 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => web/ui/react-app/.gitignore (100%) rename README.md => web/ui/react-app/README.md (100%) rename package-lock.json => web/ui/react-app/package-lock.json (100%) rename package.json => web/ui/react-app/package.json (100%) rename {public => web/ui/react-app/public}/favicon.ico (100%) rename {public => web/ui/react-app/public}/index.html (100%) rename {public => web/ui/react-app/public}/manifest.json (100%) rename {src => web/ui/react-app/src}/App.css (100%) rename {src => web/ui/react-app/src}/App.test.js (100%) rename {src => web/ui/react-app/src}/App.tsx (100%) rename {src => web/ui/react-app/src}/DataTable.tsx (100%) rename {src => web/ui/react-app/src}/ExpressionInput.tsx (100%) rename {src => web/ui/react-app/src}/Graph.tsx (100%) rename {src => web/ui/react-app/src}/GraphControls.tsx (100%) rename {src => web/ui/react-app/src}/Legend.tsx (100%) rename {src => web/ui/react-app/src}/MetricFomat.ts (100%) rename {src => web/ui/react-app/src}/Panel.tsx (100%) rename {src => web/ui/react-app/src}/PanelList.tsx (100%) rename {src => web/ui/react-app/src}/SeriesName.tsx (100%) rename {src => web/ui/react-app/src}/TimeInput.tsx (100%) rename {src => web/ui/react-app/src}/globals.ts (100%) rename {src => web/ui/react-app/src}/index.tsx (100%) rename {src => web/ui/react-app/src}/react-app-env.d.ts (100%) rename {src => web/ui/react-app/src}/utils/timeFormat.ts (100%) rename {src => web/ui/react-app/src}/utils/urlParams.ts (100%) rename tsconfig.json => web/ui/react-app/tsconfig.json (100%) diff --git a/.gitignore b/web/ui/react-app/.gitignore similarity index 100% rename from .gitignore rename to web/ui/react-app/.gitignore diff --git a/README.md b/web/ui/react-app/README.md similarity index 100% rename from README.md rename to web/ui/react-app/README.md diff --git a/package-lock.json b/web/ui/react-app/package-lock.json similarity index 100% rename from package-lock.json rename to web/ui/react-app/package-lock.json diff --git a/package.json b/web/ui/react-app/package.json similarity index 100% rename from package.json rename to web/ui/react-app/package.json diff --git a/public/favicon.ico b/web/ui/react-app/public/favicon.ico similarity index 100% rename from public/favicon.ico rename to web/ui/react-app/public/favicon.ico diff --git a/public/index.html b/web/ui/react-app/public/index.html similarity index 100% rename from public/index.html rename to web/ui/react-app/public/index.html diff --git a/public/manifest.json b/web/ui/react-app/public/manifest.json similarity index 100% rename from public/manifest.json rename to web/ui/react-app/public/manifest.json diff --git a/src/App.css b/web/ui/react-app/src/App.css similarity index 100% rename from src/App.css rename to web/ui/react-app/src/App.css diff --git a/src/App.test.js b/web/ui/react-app/src/App.test.js similarity index 100% rename from src/App.test.js rename to web/ui/react-app/src/App.test.js diff --git a/src/App.tsx b/web/ui/react-app/src/App.tsx similarity index 100% rename from src/App.tsx rename to web/ui/react-app/src/App.tsx diff --git a/src/DataTable.tsx b/web/ui/react-app/src/DataTable.tsx similarity index 100% rename from src/DataTable.tsx rename to web/ui/react-app/src/DataTable.tsx diff --git a/src/ExpressionInput.tsx b/web/ui/react-app/src/ExpressionInput.tsx similarity index 100% rename from src/ExpressionInput.tsx rename to web/ui/react-app/src/ExpressionInput.tsx diff --git a/src/Graph.tsx b/web/ui/react-app/src/Graph.tsx similarity index 100% rename from src/Graph.tsx rename to web/ui/react-app/src/Graph.tsx diff --git a/src/GraphControls.tsx b/web/ui/react-app/src/GraphControls.tsx similarity index 100% rename from src/GraphControls.tsx rename to web/ui/react-app/src/GraphControls.tsx diff --git a/src/Legend.tsx b/web/ui/react-app/src/Legend.tsx similarity index 100% rename from src/Legend.tsx rename to web/ui/react-app/src/Legend.tsx diff --git a/src/MetricFomat.ts b/web/ui/react-app/src/MetricFomat.ts similarity index 100% rename from src/MetricFomat.ts rename to web/ui/react-app/src/MetricFomat.ts diff --git a/src/Panel.tsx b/web/ui/react-app/src/Panel.tsx similarity index 100% rename from src/Panel.tsx rename to web/ui/react-app/src/Panel.tsx diff --git a/src/PanelList.tsx b/web/ui/react-app/src/PanelList.tsx similarity index 100% rename from src/PanelList.tsx rename to web/ui/react-app/src/PanelList.tsx diff --git a/src/SeriesName.tsx b/web/ui/react-app/src/SeriesName.tsx similarity index 100% rename from src/SeriesName.tsx rename to web/ui/react-app/src/SeriesName.tsx diff --git a/src/TimeInput.tsx b/web/ui/react-app/src/TimeInput.tsx similarity index 100% rename from src/TimeInput.tsx rename to web/ui/react-app/src/TimeInput.tsx diff --git a/src/globals.ts b/web/ui/react-app/src/globals.ts similarity index 100% rename from src/globals.ts rename to web/ui/react-app/src/globals.ts diff --git a/src/index.tsx b/web/ui/react-app/src/index.tsx similarity index 100% rename from src/index.tsx rename to web/ui/react-app/src/index.tsx diff --git a/src/react-app-env.d.ts b/web/ui/react-app/src/react-app-env.d.ts similarity index 100% rename from src/react-app-env.d.ts rename to web/ui/react-app/src/react-app-env.d.ts diff --git a/src/utils/timeFormat.ts b/web/ui/react-app/src/utils/timeFormat.ts similarity index 100% rename from src/utils/timeFormat.ts rename to web/ui/react-app/src/utils/timeFormat.ts diff --git a/src/utils/urlParams.ts b/web/ui/react-app/src/utils/urlParams.ts similarity index 100% rename from src/utils/urlParams.ts rename to web/ui/react-app/src/utils/urlParams.ts diff --git a/tsconfig.json b/web/ui/react-app/tsconfig.json similarity index 100% rename from tsconfig.json rename to web/ui/react-app/tsconfig.json