Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
This commit is contained in:
23
tools/shapeshifter-specification-main/.github/ISSUE_TEMPLATE/improvement_suggestion.md
vendored
Normal file
23
tools/shapeshifter-specification-main/.github/ISSUE_TEMPLATE/improvement_suggestion.md
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
name: Improvement Suggestion
|
||||
about: Create a report to help us improve
|
||||
title: "[Improvement]"
|
||||
labels: improvement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## **Describe the improvement**
|
||||
A clear and concise description of what the suggestion is.
|
||||
|
||||
## **Additional context**
|
||||
Add any other context about the problem here.
|
||||
|
||||
## **Expected behavior**
|
||||
A clear and concise description of what you expected to see.
|
||||
|
||||
## **Screenshots**
|
||||
If applicable, add screenshots to help explain your suggestion.
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the suggestion here.
|
||||
24
tools/shapeshifter-specification-main/.github/dependabot.yml
vendored
Normal file
24
tools/shapeshifter-specification-main/.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
# SPDX-FileCopyrightText: 2020-2023 Contributors to the Shapeshifter project
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "pip"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
groups:
|
||||
python-packages:
|
||||
patterns:
|
||||
- "*"
|
||||
update-types:
|
||||
- "patch"
|
||||
- "minor"
|
||||
ignore:
|
||||
- dependency-name: "*"
|
||||
update-types: ["version-update:semver-major"]
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
36
tools/shapeshifter-specification-main/.github/workflows/docs-latest.yml
vendored
Normal file
36
tools/shapeshifter-specification-main/.github/workflows/docs-latest.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright Contributors to the Shapeshifter project
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
name: docs-latest
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0 # checkout branch history required to update
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.12
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
key: ${{ github.ref }}
|
||||
path: .cache
|
||||
- name: Install Poetry and dependencies
|
||||
run: |
|
||||
pip install poetry
|
||||
poetry install --no-interaction
|
||||
- name: Configure fake git user to associate commits
|
||||
run: |
|
||||
git config --global user.name Docs deploy
|
||||
git config --global user.email docs-action@shapshifter
|
||||
- name: Push the main branch under the alias development
|
||||
run: poetry run mike deploy --push --update-aliases development
|
||||
34
tools/shapeshifter-specification-main/.github/workflows/docs-pr.yml
vendored
Normal file
34
tools/shapeshifter-specification-main/.github/workflows/docs-pr.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
# Copyright Contributors to the Shapeshifter project
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
name: docs-pr
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened]
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0 # checkout branch history required to update
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.12
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
key: ${{ github.ref }}
|
||||
path: .cache
|
||||
- name: Install Poetry and dependencies
|
||||
run: |
|
||||
pip install poetry
|
||||
poetry install --no-interaction
|
||||
- name: Create local documentation build
|
||||
run: poetry run mkdocs build
|
||||
- name: Archive reports
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Shapeshifter documentation build
|
||||
path: site/
|
||||
40
tools/shapeshifter-specification-main/.github/workflows/docs-release.yml
vendored
Normal file
40
tools/shapeshifter-specification-main/.github/workflows/docs-release.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright Contributors to the Shapeshifter project
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
name: docs-release
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- published
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0 # checkout branch history required to update
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.12
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
key: ${{ github.ref }}
|
||||
path: .cache
|
||||
- name: Install Poetry and dependencies
|
||||
run: |
|
||||
pip install poetry
|
||||
poetry install --no-interaction
|
||||
- name: Configure fake git user to associate commits
|
||||
run: |
|
||||
git config --global user.name Docs deploy
|
||||
git config --global user.email docs-action@shapshifter
|
||||
- name: Push the verisioned documentation with alias latest
|
||||
run: poetry run mike deploy --push --update-aliases ${{ github.event.release.tag_name }} latest
|
||||
env:
|
||||
ENABLE_PDF_EXPORT: 1
|
||||
- name: Set latest as default (should only have te be run once)
|
||||
run: poetry run mike set-default --push latest
|
||||
Reference in New Issue
Block a user