generated from stjude-biohackathon/KIDS24-team
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds dashboard for TES for future development
- Loading branch information
1 parent
fb3c076
commit a89eed7
Showing
26 changed files
with
4,831 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,10 @@ Cargo.lock | |
|
||
stderr.txt | ||
stdout.txt | ||
|
||
node_modules/ | ||
/target | ||
rustup-init.exe | ||
src/main_worked.rs | ||
|
||
.env.*.local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.