relocate assets so they get budled correctly
All checks were successful
All checks were successful
This commit is contained in:
@@ -54,3 +54,6 @@ where = ["src"]
|
|||||||
|
|
||||||
[tool.setuptools.package-dir]
|
[tool.setuptools.package-dir]
|
||||||
"" = "src"
|
"" = "src"
|
||||||
|
|
||||||
|
[tool.setuptools.package-data]
|
||||||
|
embeddingbuddy = ["assets/**/*"]
|
||||||
|
@@ -16,9 +16,9 @@ def create_app():
|
|||||||
from .ui.callbacks.visualization import VisualizationCallbacks
|
from .ui.callbacks.visualization import VisualizationCallbacks
|
||||||
from .ui.callbacks.interactions import InteractionCallbacks
|
from .ui.callbacks.interactions import InteractionCallbacks
|
||||||
|
|
||||||
# Get the project root directory (two levels up from this file)
|
# Get the assets directory relative to this module
|
||||||
project_root = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
|
module_dir = os.path.dirname(__file__)
|
||||||
assets_path = os.path.join(project_root, "assets")
|
assets_path = os.path.join(module_dir, "assets")
|
||||||
|
|
||||||
app = dash.Dash(
|
app = dash.Dash(
|
||||||
__name__,
|
__name__,
|
||||||
@@ -167,8 +167,15 @@ def serve(host=None, port=None, dev=False, debug=False):
|
|||||||
|
|
||||||
# Only print startup messages in main process (not in Flask reloader)
|
# Only print startup messages in main process (not in Flask reloader)
|
||||||
if not os.environ.get("WERKZEUG_RUN_MAIN"):
|
if not os.environ.get("WERKZEUG_RUN_MAIN"):
|
||||||
|
from importlib.metadata import version
|
||||||
|
|
||||||
|
try:
|
||||||
|
pkg_version = version("embeddingbuddy")
|
||||||
|
except Exception:
|
||||||
|
pkg_version = "unknown"
|
||||||
|
|
||||||
mode = "development" if dev else ("debug" if debug else "production")
|
mode = "development" if dev else ("debug" if debug else "production")
|
||||||
print(f"Starting EmbeddingBuddy in {mode} mode...")
|
print(f"Starting EmbeddingBuddy v{pkg_version} in {mode} mode...")
|
||||||
print("Loading dependencies (this may take a few seconds)...")
|
print("Loading dependencies (this may take a few seconds)...")
|
||||||
print(f"Server will start at http://{actual_host}:{actual_port}")
|
print(f"Server will start at http://{actual_host}:{actual_port}")
|
||||||
if use_reloader:
|
if use_reloader:
|
||||||
|
Reference in New Issue
Block a user