README.md 565 B

ShariX Platform Running

User web-interface for ShariX services. It implies interaction with the list of services, payment, establishment of relationships, interaction with technical support, etc. that is beyond default scenario.

Application definition

# core/settings.py
INSTALLED_APPS = [
    # ...
    'platformrunning.apps.PlatformrunningConfig',
    # ...
]
# core/urls.py
urlpatterns = [
    # ...
    path('platformrunning/', include('platformrunning.urls', namespace='platformrunning'), name='platformrunning')
    # ...
]