Web-interface backend template for services based on ShariX Open. It implies interaction with the list of services, payment, establishment of relationships, interaction with technical support, etc. that is beyond default scenario

Шаблон бэкэнда веб-интерфейса сервиса на основе ShariX Open.Подразумевает взаимодействие со списком услуг, тарифы, настройку взаимоотношений

1Mike21 49edf74ca6 Merge branch 'unstable' of https://git.sharix-app.org/ShariX_Open/sharix-open-webservice-running into unstable 1 ano atrás
static 49edf74ca6 Merge branch 'unstable' of https://git.sharix-app.org/ShariX_Open/sharix-open-webservice-running into unstable 1 ano atrás
templates 49edf74ca6 Merge branch 'unstable' of https://git.sharix-app.org/ShariX_Open/sharix-open-webservice-running into unstable 1 ano atrás
.gitignore 49edf74ca6 Merge branch 'unstable' of https://git.sharix-app.org/ShariX_Open/sharix-open-webservice-running into unstable 1 ano atrás
README.md f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
__init__.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
admin.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
apps.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
forms.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
license ac1cecbcc5 license info added 2 anos atrás
models.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
tests.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
urls.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás
views.py f7dd641b99 Добавил модуль с формой для обработки заказа 1 ano atrás

README.md

Design Template

A module for processing customer orders implemented as a Django application.

Installation

1) Download or clone repository

git clone https://git.sharix-app.org/ShariX_Open/sharix-open-webservice-running.git

2) Install required dependencies in project settings

INSTALLED_APPS = [   
    ...
    'webservice_running',
    ...
]

3) Connects application routes to the project

  urlpatterns = (
  [
    ...
    path('webservice/', include("webservice_running.urls"), name='webservice'),
    ...
  ]
  )

4) Delete the migration files in the migrations folder (everything except init.py)

Start test the server:

python manage.py runserver 8000

If the port has not been selected, it is 8000 by default. If selected port is busy, use another one (for example, try increasing port number by 1 until the server starts). A link to the website should appear in the terminal.