diff --git a/docs/web/docs/reference/Architects.md b/docs/web/docs/reference/Architects.md index 0c4b258a3..5742eb68d 100644 --- a/docs/web/docs/reference/Architects.md +++ b/docs/web/docs/reference/Architects.md @@ -40,7 +40,7 @@ |use_hobby|bool|False|Launch on the Heroku Hobby tier|None|False| |heroku_team|unknown|???|Heroku team to use for this launch|None|False| |heroku_app_name|unknown|???|Heroku app name to use for this launch|None|False| -|heroku_config_args|unknown||str:str dict containing all heroku config variables to set for the app|None|False| +|heroku_config_args|unknown|{}|str:str dict containing all heroku config variables to set for the app|None|False| ## ec2 @@ -52,5 +52,5 @@ |server_type|str|node|None|None|False| |server_source_path|str|???|Optional path to a prepared server directory containing everything needed to run a server of the given type. Overrides server type. |None|False| |instance_type|str|t2.micro|Instance type to run router|None|False| -|subdomain|str|${mephisto.task.task_name}|Subdomain name for routing|None|False| +|subdomain|str|The task name defined in your task's hydra config|Subdomain name for routing|None|False| |profile_name|str|???|Profile name for deploying an ec2 instance|None|False| diff --git a/docs/web/docs/reference/Blueprints.md b/docs/web/docs/reference/blueprints.md similarity index 100% rename from docs/web/docs/reference/Blueprints.md rename to docs/web/docs/reference/blueprints.md diff --git a/mephisto/client/cli_commands.py b/mephisto/client/cli_commands.py index 62b49adc8..83d6cb6a4 100644 --- a/mephisto/client/cli_commands.py +++ b/mephisto/client/cli_commands.py @@ -134,7 +134,11 @@ def get_wut_arguments(args): return # These are values that do not convert to a string well or are incorrect, so they need to be hardcoded - argument_overrides = {"tips_location": ("default", "path_to_task/assets/tips.csv")} + argument_overrides = { + "tips_location": ("default", "path_to_task/assets/tips.csv"), + "heroku_config_args": ("default", "{}"), + "subdomain": ("default", "The task name defined in your task's hydra config"), + } arg_dict = get_extra_argument_dicts(target_class)[0] click.echo(arg_dict["desc"]) diff --git a/mephisto/scripts/local_db/gh_actions/auto_generate_architect.py b/mephisto/scripts/local_db/gh_actions/auto_generate_architect.py index 15b3b79a7..f1e9c2e74 100644 --- a/mephisto/scripts/local_db/gh_actions/auto_generate_architect.py +++ b/mephisto/scripts/local_db/gh_actions/auto_generate_architect.py @@ -8,7 +8,7 @@ def main(): architect_file = MdUtils( - file_name="../../../../docs/web/docs/reference/Architects.md", + file_name="../../../../docs/web/docs/reference/architects.md", ) architect_file.new_header(level=1, title="Architects") valid_architect_types = get_valid_architect_types() diff --git a/mephisto/scripts/local_db/gh_actions/auto_generate_blueprint.py b/mephisto/scripts/local_db/gh_actions/auto_generate_blueprint.py index 36fe4a517..b5dce4608 100644 --- a/mephisto/scripts/local_db/gh_actions/auto_generate_blueprint.py +++ b/mephisto/scripts/local_db/gh_actions/auto_generate_blueprint.py @@ -45,7 +45,7 @@ def create_blueprint_info(blueprint_file, arg_dict): def main(): blueprint_file = MdUtils( - file_name="../../../../docs/web/docs/reference/Blueprints.md", + file_name="../../../../docs/web/docs/reference/blueprints.md", ) blueprint_file.new_header(level=1, title="Blueprints") blueprint_file.new_paragraph("The blueprint determines the task content.")