Added new features to the project
This commit is contained in:
14
lib/alwrity_ui/alwrity_researcher/main.py
Normal file
14
lib/alwrity_ui/alwrity_researcher/main.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import streamlit as st
|
||||
import sys
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
# Add the current directory to the path
|
||||
sys.path.append(str(Path(__file__).parent))
|
||||
|
||||
# Import the dashboard module
|
||||
from dashboard import main
|
||||
|
||||
# Run the dashboard
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user