Jelajahi Sumber

Webservice über nssm

gc-server3 3 hari lalu
induk
melakukan
aed738d76e

+ 8 - 1
README.md

@@ -1,4 +1,11 @@
-# Reisacher Forderungsmanagement 2.0
+# GlobalCube Enterprise Planning, Information & Controlling (gcepic)
+
+Das ultimative Tool für:
+
+- Forderungsmanagement
+- Offene Aufträge
+- Planung
+- Fahrzeug-Auftragseingang
 
 ## Installation
 

+ 3 - 3
pyproject.toml

@@ -1,7 +1,7 @@
 [project]
-name = "reisacher-forderung"
-version = "0.1.0"
-description = "Reisacher Forderungsmanagement 2.0"
+name = "gcepic"
+version = "0.2.0"
+description = "GlobalCube Enterprise Planning, Information & Controlling"
 readme = "README.md"
 requires-python = ">=3.13"
 dependencies = [

+ 5 - 0
webservice/install_service.bat

@@ -0,0 +1,5 @@
+@echo off
+cd /d %~dp0
+nssm.exe install "GlobalCube EPIC Webservice" "%~dp0webservice.bat"
+net start "GlobalCube EPIC Webservice"
+pause

TEMPAT SAMPAH
webservice/nssm.exe


+ 3 - 0
webservice/start_service.bat

@@ -0,0 +1,3 @@
+@echo off
+net start "GlobalCube EPIC Webservice"
+pause

+ 3 - 0
webservice/stop_service.bat

@@ -0,0 +1,3 @@
+@echo off
+net stop "GlobalCube EPIC Webservice"
+pause

+ 4 - 0
webservice/uninstall_service.bat

@@ -0,0 +1,4 @@
+@echo off
+cd /d %~dp0
+nssm.exe remove "GlobalCube EPIC Webservice"
+pause

+ 5 - 0
webservice/webservice.bat

@@ -0,0 +1,5 @@
+cd %~dp0..
+call .venv\Scripts\activate.bat
+
+uvicorn app.main:app --reload --host 0.0.0.0 --port 8093
+rem pause