Skip to content

Commit

Permalink
Neue Version und Test
Browse files Browse the repository at this point in the history
  • Loading branch information
shMeske committed Nov 1, 2023
1 parent ed6577c commit 6e37e9c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions convert_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ def combine_all_files():

def change_imports(combined_file: str):
print("Changing imports of pyodide File")
with open(f"dashboard/{combined_file}.js", "r") as file:
with open(f"{RESULTING_FILENAME}/{combined_file}.js", "r") as file:
text = file.read()
text = substring_replace(text)
with open(f"dashboard/{combined_file}.js", "w") as file:
with open(f"{RESULTING_FILENAME}/{combined_file}.js", "w") as file:
file.write(text)


Expand Down Expand Up @@ -281,10 +281,10 @@ def build_one_pipeline(pipeline_input: str):


def build_all_pipelines():
for pipeline in POSSIBLE_PIPELINES:
for single_pipeline in POSSIBLE_PIPELINES:
files_added.clear()
print(f"Building: {pipeline}\n")
build_one_pipeline(pipeline)
print(f"Building: {single_pipeline}\n")
build_one_pipeline(single_pipeline)


def build_all_pipelines_into_one():
Expand Down
20 changes: 10 additions & 10 deletions dashboard/dashboard.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dashboard/serviceWorker.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const appName = 'Panel Pyodide App'
const appCacheName = 'Panel Pyodide App-cc2e9c2c8c98451cb2ce9fa2c3381b3a';
const appCacheName = 'Panel Pyodide App-035d66a605b149b0a37d317d9616c7d0';

const preCacheFiles = ['images/favicon.ico', 'images/icon-vector.svg', 'images/icon-32x32.png', 'images/icon-192x192.png', 'images/icon-512x512.png', 'images/apple-touch-icon.png', 'images/index_background.png'];

Expand Down
4 changes: 2 additions & 2 deletions dashboard/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Biopsykit Dashboard",
"short_name": "Biopsykit Dashboard",
"name": "Panel Applications",
"short_name": "Panel Applications",
"start_url": "dashboard.html",
"icons": [
{
Expand Down

0 comments on commit 6e37e9c

Please sign in to comment.