Skip to content

Commit

Permalink
adds dashboard for TES for future development
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgattas committed Sep 17, 2024
1 parent fb3c076 commit a89eed7
Show file tree
Hide file tree
Showing 26 changed files with 4,831 additions and 0 deletions.
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

0 comments on commit a89eed7

Please sign in to comment.