diff --git a/cookiecutter.json b/cookiecutter.json index 266feb5..29ab7a7 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -29,7 +29,12 @@ "cosmos-postgres": "CosmosDB Postgres Adapter", "postgres-addon": "Azure Container Apps Postgres Addon [red]Requires ACA[/red]", "cosmos-mongodb": "CosmosDB - MongoDB Adapter [red]Flask/FastAPI Only[/red]" - } - }, + }, + "project_host": { + "__prompt__": "Choose an Azure Host Framework", + "aca": "Azure Container Apps", + "appservice": "Azure App Service" + }, "web_port": "Port to run the web server on?" + } } diff --git a/tests/conftest.py b/tests/conftest.py index 6d28545..c49cd25 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,16 +20,13 @@ def CONTEXT_OVERRIDE(web_frameworks, db_resource): def default_context(): return { "project_name": "Long_MIXED_CASE-demo name", - "azd_template_version": "0.0.1", "project_backend": ["django", "fastapi", "flask"], - "use_vnet": "n", "db_resource": [ "postgres-flexible", "cosmos-postgres", "postgres-addon", "cosmos-mongodb", ], - "opencensus": "y", "web_port": "8000", }