mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-17 11:07:56 -04:00
Cleanup the forked template repo
This commit is contained in:
parent
35edec2998
commit
2168b9a6f8
9 changed files with 4 additions and 122 deletions
|
@ -1,33 +0,0 @@
|
||||||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
||||||
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
|
|
||||||
{
|
|
||||||
"name": "QMK CLI",
|
|
||||||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
||||||
"image": "ghcr.io/qmk/qmk_cli",
|
|
||||||
"customizations": {
|
|
||||||
"vscode": {
|
|
||||||
"extensions": [
|
|
||||||
"amodio.toggle-excluded-files",
|
|
||||||
"EditorConfig.EditorConfig",
|
|
||||||
"xaver.clang-format",
|
|
||||||
"llvm-vs-code-extensions.vscode-clangd",
|
|
||||||
"bierner.github-markdown-preview",
|
|
||||||
"donjayamanne.git-extension-pack",
|
|
||||||
"ms-vscode-remote.remote-containers"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/setup.sh ${containerWorkspaceFolder}"
|
|
||||||
|
|
||||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
||||||
// "features": {},
|
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
||||||
// "forwardPorts": [],
|
|
||||||
|
|
||||||
// Configure tool-specific properties.
|
|
||||||
// "customizations": {},
|
|
||||||
|
|
||||||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
||||||
// "remoteUser": "root"
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -eEuo pipefail
|
|
||||||
|
|
||||||
wget https://bootstrap.pypa.io/get-pip.py
|
|
||||||
python3 get-pip.py
|
|
||||||
python3 -m pip install qmk
|
|
||||||
rm get-pip.py
|
|
||||||
|
|
||||||
python3 -m pip install --upgrade milc
|
|
||||||
|
|
||||||
userspacePath="$1"
|
|
||||||
|
|
||||||
git config --global --add safe.directory "$userspacePath"
|
|
||||||
git submodule update --init --recursive
|
|
||||||
|
|
||||||
[ -d /workspaces/qmk_firmware ] || git clone https://github.com/qmk/qmk_firmware.git /workspaces/qmk_firmware
|
|
||||||
git config --global --add safe.directory /workspaces/qmk_firmware
|
|
||||||
|
|
||||||
qmk config user.qmk_home=/workspaces/qmk_firmware
|
|
||||||
qmk config user.overlay_dir="$userspacePath"
|
|
||||||
|
|
||||||
qmk git-submodule
|
|
|
@ -1,32 +0,0 @@
|
||||||
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
|
|
||||||
# editorconfig.org
|
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# We recommend you to keep these unchanged
|
|
||||||
charset = utf-8
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
trim_trailing_whitespace = false
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
[{qmk,*.py}]
|
|
||||||
charset = utf-8
|
|
||||||
max_line_length = 200
|
|
||||||
|
|
||||||
# Make these match what we have in .gitattributes
|
|
||||||
[*.mk]
|
|
||||||
end_of_line = lf
|
|
||||||
indent_style = tab
|
|
||||||
|
|
||||||
[Makefile]
|
|
||||||
end_of_line = lf
|
|
||||||
indent_style = tab
|
|
||||||
|
|
||||||
[*.sh]
|
|
||||||
end_of_line = lf
|
|
20
.github/workflows/build_binaries.yaml
vendored
20
.github/workflows/build_binaries.yaml
vendored
|
@ -1,20 +0,0 @@
|
||||||
name: Build QMK firmware
|
|
||||||
|
|
||||||
on: [push, workflow_dispatch]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: 'QMK Userspace Build'
|
|
||||||
uses: qmk/.github/.github/workflows/qmk_userspace_build.yml@main
|
|
||||||
with:
|
|
||||||
qmk_repo: qmk/qmk_firmware
|
|
||||||
qmk_ref: master
|
|
||||||
|
|
||||||
publish:
|
|
||||||
name: 'QMK Userspace Publish'
|
|
||||||
uses: qmk/.github/.github/workflows/qmk_userspace_publish.yml@main
|
|
||||||
if: always() && !cancelled()
|
|
||||||
needs: build
|
|
12
.vscode/extensions.json
vendored
12
.vscode/extensions.json
vendored
|
@ -1,12 +0,0 @@
|
||||||
// Suggested extensions
|
|
||||||
{
|
|
||||||
"recommendations": [
|
|
||||||
"amodio.toggle-excluded-files",
|
|
||||||
"EditorConfig.EditorConfig",
|
|
||||||
"xaver.clang-format",
|
|
||||||
"llvm-vs-code-extensions.vscode-clangd",
|
|
||||||
"bierner.github-markdown-preview",
|
|
||||||
"donjayamanne.git-extension-pack",
|
|
||||||
"ms-vscode-remote.remote-containers"
|
|
||||||
]
|
|
||||||
}
|
|
6
qmk.json
6
qmk.json
|
@ -1,4 +1,6 @@
|
||||||
{
|
{
|
||||||
"userspace_version": "1.0",
|
"userspace_version": "1.1",
|
||||||
"build_targets": []
|
"build_targets": [
|
||||||
|
["keebio/iris_ce/rev1", "chzerv"]
|
||||||
|
]
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue