Alle Tasks/tools als Webservice oder CLI
|
il y a 1 mois | |
---|---|---|
.vscode | il y a 2 mois | |
cognos11 | il y a 1 mois | |
cognos7 | il y a 1 mois | |
config | il y a 1 mois | |
database | il y a 2 mois | |
dist | il y a 1 mois | |
docs | il y a 4 mois | |
excel | il y a 1 mois | |
logviewer | il y a 1 an | |
misc | il y a 1 mois | |
il y a 10 mois | ||
services | il y a 2 ans | |
status_client | il y a 4 mois | |
tests | il y a 1 mois | |
.gitignore | il y a 1 an | |
.python-version | il y a 1 mois | |
README.md | il y a 1 mois | |
__init__.py | il y a 4 mois | |
backup.py | il y a 1 mois | |
c11.bat | il y a 1 an | |
c11.py | il y a 3 mois | |
c11.spec | il y a 1 an | |
c7.py | il y a 1 mois | |
db.bat | il y a 1 an | |
db.py | il y a 1 mois | |
db.spec | il y a 1 an | |
docker-compose.yml | il y a 2 ans | |
dump.json | il y a 1 an | |
favicon.ico | il y a 1 an | |
gctools.bat | il y a 2 mois | |
gctools.py | il y a 1 mois | |
gctools.spec | il y a 4 mois | |
main.py | il y a 2 ans | |
misc2.py | il y a 2 mois | |
mkdocs.yml | il y a 4 mois | |
pyproject.toml | il y a 1 mois | |
requirements.txt | il y a 4 mois | |
status.py | il y a 4 mois | |
tox.ini | il y a 1 an | |
uv.lock | il y a 1 mois | |
uwsgi.ini | il y a 2 ans | |
xls.py | il y a 11 mois |
Zunächst muss uv
, der Python-Paketmanager, installiert werden:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Im Anschluss git-Repository klonen (am Beispiel von Ordner C:\Projekte
- im Grunde beliebig):
cd C:\Projekte
git clone https://git.global-cube.com/GlobalCube/gctools.git
Git erstellt einen Unterordner C:\Projekte\gctools
, in dem das gesamte Projekt abgelegt ist.
Jetzt müssen alle Requirements erfüllt werden: passende Python-Version, benötigte Module mit entsprechenden Abhängigkeiten.
Das übernimmt uv
cd C:\Projekte\gctools
uv run gctools.py
Die Konsole meldet dann Folgendes:
(gctools) C:\Projekte\gctools>uv run gctools.py
Usage: gctools.py [OPTIONS] COMMAND [ARGS]...
gctools.exe - Hilfe unter https://docs.global-cube.com/5_Tasks/3_gctools/
Version 1.0 vom 25.02.2025
╭─ Options ────────────────────────────────────────────────────────────────────────╮
│ --help Show this message and exit. │
╰──────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ───────────────────────────────────────────────────────────────────────╮
│ backup │
│ c11 │
│ c7 │
│ db │
│ misc │
│ excel │
│ status │
╰──────────────────────────────────────────────────────────────────────────────────╯
Das Repository ist nun bereit für die Bearbeitung.
Um das Package zu erstellen, muss lediglich die gctools.bat
ausgeführt werden.
Damit werden alle Projektdateien und Module zu einer großen exe-Datei zusammengefasst.
Diese wird im Unterordner dist
abgelegt.
In der gctools.bat ist noch ein Kopierbefehl für den Ordner P:\GCTools
enthalten.
Hier sollte immer die neueste Version abgelegt werden.
Abgesehen von dieser Kurzanleitung ist die Dokumentation unter folgendem Link zu finden: https://docs.global-cube.com/5_Tasks/3_gctools/
Das entsprechende mkdocs-Repository liegt hier: https://github.com/Global-Cube/docs.git