mirror of
https://github.com/artegoser/image-pluser-webui.git
synced 2025-02-22 12:13:15 +03:00
feat: full app
This commit is contained in:
parent
92a560c170
commit
f338f7b5c9
10 changed files with 171 additions and 0 deletions
7
scripts/one-click/install.bat
Normal file
7
scripts/one-click/install.bat
Normal file
|
@ -0,0 +1,7 @@
|
|||
@echo off
|
||||
|
||||
git clone https://github.com/artegoser/image-pluser-webui.git
|
||||
cd image-pluser-webui
|
||||
python -m venv venv
|
||||
call ./venv/Scripts/activate.bat
|
||||
pip install -r requirements.txt
|
7
scripts/win/install.bat
Normal file
7
scripts/win/install.bat
Normal file
|
@ -0,0 +1,7 @@
|
|||
@echo off
|
||||
|
||||
cd ../../
|
||||
|
||||
python -m venv venv
|
||||
call ./venv/Scripts/activate.bat
|
||||
pip install -r requirements.txt
|
6
scripts/win/start.bat
Normal file
6
scripts/win/start.bat
Normal file
|
@ -0,0 +1,6 @@
|
|||
@echo off
|
||||
|
||||
cd ../../
|
||||
|
||||
call ./venv/Scripts/activate.bat
|
||||
python app.py
|
7
scripts/win/update.bat
Normal file
7
scripts/win/update.bat
Normal file
|
@ -0,0 +1,7 @@
|
|||
@echo off
|
||||
|
||||
cd ../../
|
||||
|
||||
git pull
|
||||
call ./venv/Scripts/activate.bat
|
||||
pip install -r requirements.txt
|
Loading…
Add table
Reference in a new issue