Explorar o código

html to webadmininterface

Evgeny Polivanov hai 1 ano
pai
achega
7c16f4225c
Modificáronse 3 ficheiros con 3 adicións e 0 borrados
  1. 1 0
      .gitignore
  2. 1 0
      install_unix.sh
  3. 1 0
      install_win.bat

+ 1 - 0
.gitignore

@@ -4,6 +4,7 @@ venv/
 #module
 tickets/
 metaservicesynced/
+SharixAdmin/templates/SharixAdmin/
 staticfiles/
 core/config.py
 migrations/

+ 1 - 0
install_unix.sh

@@ -1,6 +1,7 @@
 #!/bin/bash
 git clone -b unstable https://git.sharix-app.org/ShariX_Open/sharix-open-tickets.git tickets
 git clone -b metasynced_module https://git.sharix-app.org/ShariX_Open/sharix-open-backend.git metaservicesynced
+git clone -b webinterface https://git.sharix-app.org/ShariX_Open/sharix-open-webadmin.git SharixAdmin/templates/SharixAdmin
 python3 -m venv env
 source env/bin/activate
 pip3 install --upgrade pip

+ 1 - 0
install_win.bat

@@ -1,5 +1,6 @@
 @echo off
 git clone -b unstable http://git.sharix-app.org/ShariX_Open/sharix-open-tickets.git tickets
 git clone -b metasynced_module http://git.sharix-app.org/ShariX_Open/sharix-open-backend.git metaservicesynced
+git clone -b webinterface https://git.sharix-app.org/ShariX_Open/sharix-open-webadmin.git SharixAdmin/templates/SharixAdmin
 python -m venv env
 .\env\Scripts\activate && pip install -r requirements.txt && python manage.py makemigrations && python manage.py migrate && python manage.py createsuperuser && python manage.py runserver