Skip to content

Commit

Permalink
Added Vue Dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
JKlueber committed Aug 21, 2024
1 parent 918b251 commit 6eeeae9
Show file tree
Hide file tree
Showing 22 changed files with 4,094 additions and 0 deletions.
4 changes: 4 additions & 0 deletions archive_query_log/dashboard/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
> 1%
last 2 versions
not dead
not ie 11
5 changes: 5 additions & 0 deletions archive_query_log/dashboard/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
22 changes: 22 additions & 0 deletions archive_query_log/dashboard/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
17 changes: 17 additions & 0 deletions archive_query_log/dashboard/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 📈 aql-monitoring

Monitor and manage the crawling of the [Archive Query Log](https://github.com/webis-de/archive-query-log).

## Installation

```shell
npm install
```

TODO: Add better instructions.

## Usage

For starting the website, navigate to the repo and do
```npm run dev-vite```
in your terminal
16 changes: 16 additions & 0 deletions archive_query_log/dashboard/components.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}

declare module 'vue' {
export interface GlobalComponents {
Footer: typeof import('./src/components/Footer.vue')['default']
Header: typeof import('./src/components/Header.vue')['default']
Home: typeof import('./src/components/Home.vue')['default']
ProgressTable: typeof import('./src/components/ProgressTable.vue')['default']
StatisticsTable: typeof import('./src/components/StatisticsTable.vue')['default']
}
}
14 changes: 14 additions & 0 deletions archive_query_log/dashboard/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<title>Archive Query Log</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>

</html>
Loading

0 comments on commit 6eeeae9

Please sign in to comment.