-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the .gitignore from the Plugin Template
- Loading branch information
Showing
4 changed files
with
152 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env bash | ||
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )"; | ||
# printf "${SCRIPT_DIR}\n" | ||
# printf "$(dirname $0)\n" | ||
if ! [[ -e "${SCRIPT_DIR}/settings.json" ]]; then | ||
printf '.vscode/settings.json does not exist. Creating it with default settings. Exiting afterwards. Run your task again.\n\n' | ||
cp "${SCRIPT_DIR}/defsettings.json" "${SCRIPT_DIR}/settings.json" | ||
exit 1 | ||
else | ||
printf '.vscode/settings.json does exist. Congrats.\n' | ||
printf 'Make sure to change settings.json to match your deck.\n' | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"deckip" : "0.0.0.0", | ||
"deckport" : "22", | ||
"deckpass" : "ssap", | ||
"deckkey" : "-i ${env:HOME}/.ssh/id_rsa", | ||
"deckdir" : "/home/deck", | ||
"python.analysis.extraPaths": [ | ||
"./py_modules" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
// OTHER | ||
{ | ||
"label": "checkforsettings", | ||
"type": "shell", | ||
"group": "none", | ||
"detail": "Check that settings.json has been created", | ||
"command": "bash -c ${workspaceFolder}/.vscode/config.sh", | ||
"problemMatcher": [] | ||
}, | ||
// BUILD | ||
{ | ||
"label": "pnpmsetup", | ||
"type": "shell", | ||
"group": "build", | ||
"detail": "Setup pnpm", | ||
"command": "pnpm i", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "updatefrontendlib", | ||
"type": "shell", | ||
"group": "build", | ||
"detail": "Update deck-frontend-lib", | ||
"command": "pnpm update decky-frontend-lib --latest", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "build", | ||
"type": "npm", | ||
"group": "build", | ||
"detail": "rollup -c", | ||
"script": "build", | ||
"path": "", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "buildall", | ||
"group": "build", | ||
"detail": "Build decky-plugin-template", | ||
"dependsOrder": "sequence", | ||
"dependsOn": [ | ||
"pnpmsetup", | ||
"build" | ||
], | ||
"problemMatcher": [] | ||
}, | ||
// DEPLOY | ||
{ | ||
"label": "createfolders", | ||
"detail": "Create plugins folder in expected directory", | ||
"type": "shell", | ||
"group": "none", | ||
"dependsOn": [ | ||
"checkforsettings" | ||
], | ||
"command": "ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'mkdir -p ${config:deckdir}/homebrew/pluginloader && mkdir -p ${config:deckdir}/homebrew/plugins'", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "deploy", | ||
"detail": "Deploy dev plugin to deck", | ||
"type": "shell", | ||
"group": "none", | ||
"dependsOn": [ | ||
"createfolders", | ||
"chmodfolders" | ||
], | ||
"command": "rsync -azp --delete --chmod=D0755,F0755 --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='node_modules/' --exclude='src/' --exclude='*.log' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/plugins/${workspaceFolderBasename}", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "restartloader", | ||
"detail": "Restart the plugin loader (to load updated python code)", | ||
"type": "shell", | ||
"group": "none", | ||
"dependsOn": [], | ||
"command": "ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S systemctl restart plugin_loader'", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "chmodfolders", | ||
"detail": "chmods folders to prevent perms issues", | ||
"type": "shell", | ||
"group": "none", | ||
"command": "ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S chmod -R ug+rw ${config:deckdir}/homebrew/'", | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "deployall", | ||
"dependsOrder": "sequence", | ||
"group": "none", | ||
"dependsOn": [ | ||
"deploy", | ||
"chmodfolders" | ||
], | ||
"problemMatcher": [] | ||
}, | ||
// ALL-IN-ONE | ||
{ | ||
"label": "allinone", | ||
"detail": "Build and deploy", | ||
"dependsOrder": "sequence", | ||
"group": "test", | ||
"dependsOn": [ | ||
"buildall", | ||
"deployall" | ||
// Uncomment this line if you'd like your python code reloaded after deployment (this will restart Steam) | ||
// ,"restartloader" | ||
], | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |