- Create the folder that you want the app created, e.g. price
- Create the app
django-admin.py startapp app_name path-to-app/app-name
- Change AppConfig name in apps.py file.
class PriceAppConfig(AppConfig):
name = 'path-to-app.price'
- put the app in
INSTALLED_APP
in settings.py file