12 lines
388 B
Python
12 lines
388 B
Python
import os
|
|
import reflex as rx
|
|
from reflex_base.plugins.sitemap import SitemapPlugin
|
|
|
|
config = rx.Config(
|
|
app_name="eptm_dashboard",
|
|
api_url=os.getenv("API_URL", "http://eptm-automation.ch:8000"),
|
|
frontend_port=int(os.getenv("FRONTEND_PORT", "3000")),
|
|
backend_port=int(os.getenv("BACKEND_PORT", "8000")),
|
|
vite_allowed_hosts=True,
|
|
disable_plugins=[SitemapPlugin],
|
|
)
|