added r script not releasable code yet

This commit is contained in:
2025-08-24 21:28:33 +02:00
parent d77c51cc81
commit 017f9fbf2e
14 changed files with 101 additions and 16 deletions

View File

@ -3,15 +3,19 @@ from dash import Dash
from dash_bootstrap_components.themes import BOOTSTRAP
from src.components.layout import create_layout
from src.data.loader_gz import load_transaction_data
from src.data.loader_gz import load_spc_data
from json import load
import os
from dotenv import load_dotenv
load_dotenv()
config_file = "./config.json"
with open(config_file) as config_f:
config=load(config_f)
def main() -> None:
print(os.getenv("MY_ENV_VAR"))
# load the data and create the data manager
data = load_transaction_data(config["DATA_PATH"])