Compare commits

...

2 commits

2 changed files with 4 additions and 1 deletions

View file

@ -34,6 +34,9 @@ dependencies = [
[project.entry-points."wutta.config.extensions"]
"{{cookiecutter.package_name}}" = "{{cookiecutter.package_name}}.config:{{cookiecutter.__studly_prefix}}Config"
[project.entry-points."wutta.web.menus"]
"{{cookiecutter.package_name}}" = "{{cookiecutter.package_name}}.web.menus:{{cookiecutter.__studly_prefix}}MenuHandler"
# [project.urls]
# Homepage = "https://example.com/"

View file

@ -37,6 +37,6 @@ def make_wsgi_app():
def make_asgi_app():
"""
Make and return the ASGI app.
Make and return the ASGI app (generic entry point).
"""
return base.make_asgi_app(main)