Skip to content

Commit 6eeeae9

Browse files
committed
Added Vue Dashboard
1 parent 918b251 commit 6eeeae9

22 files changed

+4094
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 1%
2+
last 2 versions
3+
not dead
4+
not ie 11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
# Editor directories and files
16+
.idea
17+
.vscode
18+
*.suo
19+
*.ntvs*
20+
*.njsproj
21+
*.sln
22+
*.sw?

archive_query_log/dashboard/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# 📈 aql-monitoring
2+
3+
Monitor and manage the crawling of the [Archive Query Log](https://github.com/webis-de/archive-query-log).
4+
5+
## Installation
6+
7+
```shell
8+
npm install
9+
```
10+
11+
TODO: Add better instructions.
12+
13+
## Usage
14+
15+
For starting the website, navigate to the repo and do
16+
```npm run dev-vite```
17+
in your terminal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/* eslint-disable */
2+
/* prettier-ignore */
3+
// @ts-nocheck
4+
// Generated by unplugin-vue-components
5+
// Read more: https://github.com/vuejs/core/pull/3399
6+
export {}
7+
8+
declare module 'vue' {
9+
export interface GlobalComponents {
10+
Footer: typeof import('./src/components/Footer.vue')['default']
11+
Header: typeof import('./src/components/Header.vue')['default']
12+
Home: typeof import('./src/components/Home.vue')['default']
13+
ProgressTable: typeof import('./src/components/ProgressTable.vue')['default']
14+
StatisticsTable: typeof import('./src/components/StatisticsTable.vue')['default']
15+
}
16+
}
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<title>Archive Query Log</title>
7+
</head>
8+
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.ts"></script>
12+
</body>
13+
14+
</html>

0 commit comments

Comments
 (0)