Skip to content
Snippets Groups Projects
dash_proxy.py 308 B
Newer Older
def setup_dash_proxy():
    command = [
        'python',
        '/dash/app/app.py',
        '--port',
        '{port}'
    ]
    
    return {
        "command": command,
        "new_browser_tab": False,
        "launcher_entry": {
            "enabled": True,
            'title': 'Dash'
        }
    }