mirror of
https://github.com/dw-0/kiauh.git
synced 2026-02-12 04:07:04 +05:00
feat(extension): add OctoApp (#554)
* Add OctoApp to v6 * fix: set correct index to new extension Signed-off-by: Dominik Willner <th33xitus@gmail.com> --------- Signed-off-by: Dominik Willner <th33xitus@gmail.com> Co-authored-by: dw-0 <th33xitus@gmail.com>
This commit is contained in:
committed by
GitHub
parent
1f75395063
commit
cd8003add9
29
kiauh/extensions/octoapp/__init__.py
Normal file
29
kiauh/extensions/octoapp/__init__.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# ======================================================================= #
|
||||
# Copyright (C) 2020 - 2024 Dominik Willner <th33xitus@gmail.com> #
|
||||
# #
|
||||
# This file is part of KIAUH - Klipper Installation And Update Helper #
|
||||
# https://github.com/dw-0/kiauh #
|
||||
# #
|
||||
# This file may be distributed under the terms of the GNU GPLv3 license #
|
||||
# ======================================================================= #
|
||||
from pathlib import Path
|
||||
|
||||
# repo
|
||||
OA_REPO = "https://github.com/crysxd/OctoApp-Plugin.git"
|
||||
|
||||
# directories
|
||||
OA_DIR = Path.home().joinpath("octoapp")
|
||||
OA_ENV_DIR = Path.home().joinpath("octoapp-env")
|
||||
OA_STORE_DIR = OA_DIR.joinpath("octoapp-store")
|
||||
|
||||
# files
|
||||
OA_REQ_FILE = OA_DIR.joinpath("requirements.txt")
|
||||
OA_DEPS_JSON_FILE = OA_DIR.joinpath("moonraker-system-dependencies.json")
|
||||
OA_INSTALL_SCRIPT = OA_DIR.joinpath("install.sh")
|
||||
OA_UPDATE_SCRIPT = OA_DIR.joinpath("update.sh")
|
||||
OA_INSTALLER_LOG_FILE = Path.home().joinpath("octoapp-installer.log")
|
||||
|
||||
# filenames
|
||||
OA_CFG_NAME = "octoapp.conf"
|
||||
OA_LOG_NAME = "octoapp.log"
|
||||
OA_SYS_CFG_NAME = "octoapp-system.cfg"
|
||||
Reference in New Issue
Block a user