@@ -63,15 +63,14 @@ def down(c, volumes=False):
63
63
'reload' : 'Enable automatic process reloading (default: True)' ,
64
64
'build' : 'Enable automatic building (default: False)' ,
65
65
'detach' : 'Detach mode: run containers in the background (default: False)' ,
66
- 'legacy-dashboard' : 'Use the old/legacy dashboard (default: False)' ,
67
66
'scale-build' : 'Add additional build instances (default: 1)' ,
68
67
'http-domain' : 'Configure a production domain for HTTP traffic. Subdomains included, '
69
68
'example.dev implies *.examples.dev for proxito. Example: '
70
69
'"17b5-139-47-118-243.ngrok.io"' ,
71
70
'log-level' : 'Logging level for the Django application (default: INFO)' ,
72
71
'django-debug' : 'Sets the DEBUG Django setting (default: True)' ,
73
72
})
74
- def up (c , search = True , init = False , reload = True , build = False , detach = False , legacy_dashboard = False , scale_build = 1 , http_domain = "" , django_debug = True , log_level = 'INFO' ):
73
+ def up (c , search = True , init = False , reload = True , build = False , detach = False , scale_build = 1 , http_domain = "" , django_debug = True , log_level = 'INFO' ):
75
74
"""Start all the docker containers for a Read the Docs instance"""
76
75
cmd = []
77
76
@@ -86,9 +85,6 @@ def up(c, search=True, init=False, reload=True, build=False, detach=False, legac
86
85
87
86
if search :
88
87
cmd .append (f'-f { DOCKER_COMPOSE_SEARCH } ' )
89
- if not legacy_dashboard :
90
- cmd .insert (0 , 'RTD_EXT_THEME_DEV_SERVER_ENABLED=t' )
91
- cmd .insert (0 , 'RTD_EXT_THEME_ENABLED=t' )
92
88
if django_debug :
93
89
cmd .insert (0 , 'RTD_DJANGO_DEBUG=t' )
94
90
if http_domain :
0 commit comments