Skip to content

javadnikbakht/django_mobile_app_version

Repository files navigation

django-mobile-app-version

A Django app for managing mobile app versions through your API.

Installation

pip install django-mobile-app-version

Quick Start

  1. Add 'mobile_app_version.apps.MobileAppVersionConfig' to your INSTALLED_APPS in settings.py module:
INSTALLED_APPS = [
    ...
    'mobile_app_version.apps.MobileAppVersionConfig',
]
  1. Include the Mobile App Version URLconf in your projects urls.py like this:
path('app-versions', include('mobile_app_version')),
  1. Run migrations to create the database tables:
python manage.py migrate mobile_app_version

If you clone this app directly in your project and have changes to application models, first run:

python manage.py makemigrations mobile_app_version
python manage.py migrate mobile_app_version

Contributing

Interested in contributing? Please see our CONTRIBUTING.md for development setup instructions and guidelines.