mithi/hexapod-robot-simulator

View on GitHub
app.py

Summary

Maintainability
A
0 mins
Test Coverage
import os
import dash
from texts import APP_TITLE
from style_settings import EXTERNAL_STYLESHEETS

app = dash.Dash(__name__, external_stylesheets=EXTERNAL_STYLESHEETS)
app.title = APP_TITLE
server = app.server
server.secret_key = os.environ.get("secret_key", "secret")
app.config.suppress_callback_exceptions = True