Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Vue Dashboard for Realtime TES Tracking #27

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Cargo.lock

stderr.txt
stdout.txt

node_modules/
/target
rustup-init.exe
src/main_worked.rs

.env.*.local
17 changes: 17 additions & 0 deletions tes-dashboard/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Welcome to the TES Dashboard

## Getting Started
This project is a component of the Crankshaft Biohackathon 2024 project. It is used to display the status of jobs submitted to a custom TES environment running on Kubernetes.

To get started,
* Clone the repo
* Run `npm install`
* Add a `local.development.local' file to the root of the project with the following content:
```
VITE_APP_API='INSERT_YOUR_API_URL_HERE'
VITE_APP_AUTH_HEADER='INSERT_YOUR_AUTH_HEADER_HERE'
```
* Run `vite` or `npm run dev` to start the development server

## Developer Notes
This project utilizes Vite, Vue, Vuetify, and one Primevue component (A Pie Chart). Although currently unused, it also contains boilerplate for a Pinia app store, along with Vue-Router, in case future developers might need these functionalities.
13 changes: 13 additions & 0 deletions tes-dashboard/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TES Dashboard</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading
Loading