[Fixed]-Django installed_apps does not recognise my app?

1👍

Check if in homepage app directory You have file named __init__.py and apps.py. The content of apps.py should be:

from django.apps import AppConfig

class HomepageConfig(AppConfig):
    name = 'homepage'

Leave a comment