Skip to content

Commit

Permalink
template-python -> workshop-azure-iot
Browse files Browse the repository at this point in the history
  • Loading branch information
ks6088ts committed Oct 16, 2024
1 parent 71655a9 commit 20cd50e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "template-python",
"name": "workshop-azure-iot",
// https://mcr.microsoft.com/en-us/product/devcontainers/python/tags
"image": "mcr.microsoft.com/devcontainers/python:dev-3.10-bookworm",
"customizations": {
Expand All @@ -13,4 +13,4 @@
},
"postCreateCommand": "pipx install poetry && make install-deps-dev",
"remoteUser": "vscode"
}
}
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ What kind of change does this Pull Request introduce?

```
git clone [email protected]:ks6088ts-labs/workshop-azure-iot.git
cd template-python
cd workshop-azure-iot
```

- Test the code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ jobs:
GIT_REVISION=${{ github.sha }}
GIT_TAG=${{steps.set_version.outputs.no-dash}}
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/template-python:${{steps.set_version.outputs.no-dash}}
${{ secrets.DOCKERHUB_USERNAME }}/template-python:latest
${{ secrets.DOCKERHUB_USERNAME }}/workshop-azure-iot:${{steps.set_version.outputs.no-dash}}
${{ secrets.DOCKERHUB_USERNAME }}/workshop-azure-iot:latest
2 changes: 1 addition & 1 deletion .github/workflows/ghcr-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
tags:
- "v*"
env:
IMAGE_NAME: template-python
IMAGE_NAME: workshop-azure-iot
jobs:
ghcr:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ci-test: install-deps-dev format-check lint test ## run CI tests
# Docker
# ---
DOCKER_REPO_NAME ?= ks6088ts
DOCKER_IMAGE_NAME ?= template-python
DOCKER_IMAGE_NAME ?= workshop-azure-iot
DOCKER_COMMAND ?= python workshop_azure_iot/core.py

# Tools
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![docker-release](https://github.com/ks6088ts-labs/workshop-azure-iot/actions/workflows/docker-release.yaml/badge.svg)](https://github.com/ks6088ts-labs/workshop-azure-iot/actions/workflows/docker-release.yaml)
[![ghcr-release](https://github.com/ks6088ts-labs/workshop-azure-iot/actions/workflows/ghcr-release.yaml/badge.svg)](https://github.com/ks6088ts-labs/workshop-azure-iot/actions/workflows/ghcr-release.yaml)

# template-python
# workshop-azure-iot

This is a template repository for Python

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "template-python"
name = "workshop-azure-iot"
version = "0.0.1"
description = "A GitHub template repository for Python"
authors = ["ks6088ts <[email protected]>"]
Expand Down

0 comments on commit 20cd50e

Please sign in to comment.