- Install the package
pip install django-mobile-app-version
- Add
'mobile_app_version.apps.MobileAppVersionConfig'
to yourINSTALLED_APPS
insettings.py
module:
INSTALLED_APPS = [
...
'mobile_app_version.apps.MobileAppVersionConfig',
]
- Include the Mobile App Version URLconf in your projects
urls.py
like this:
path('app-versions', include('mobile_app_version')),
- Run
python manage.py migrate mobile_app_version
to create the tables of app in your database. if you clone this app directly in your project and have some changes on application models you should first runpyhton manage.py makemigrations mobile_app_version
and then migrate models.