Skip to content

Commit 782b8ee

Browse files
committed
template-python -> template-langgraph
1 parent f9b0d51 commit 782b8ee

File tree

12 files changed

+26
-26
lines changed

12 files changed

+26
-26
lines changed

.devcontainer/devcontainer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "template-python",
3-
// https://mcr.microsoft.com/en-us/product/devcontainers/python/tags
4-
"image": "mcr.microsoft.com/devcontainers/python:dev-3.13-bookworm",
5-
"customizations": {
6-
"vscode": {
7-
"extensions": [
8-
"ms-python.python",
9-
"charliermarsh.ruff",
10-
"GitHub.copilot-chat"
11-
]
12-
}
13-
},
14-
"postCreateCommand": "pipx install uv && make install-deps-dev",
15-
"remoteUser": "vscode"
2+
"name": "template-langgraph",
3+
// https://mcr.microsoft.com/en-us/product/devcontainers/python/tags
4+
"image": "mcr.microsoft.com/devcontainers/python:dev-3.13-bookworm",
5+
"customizations": {
6+
"vscode": {
7+
"extensions": [
8+
"ms-python.python",
9+
"charliermarsh.ruff",
10+
"GitHub.copilot-chat"
11+
]
12+
}
13+
},
14+
"postCreateCommand": "pipx install uv && make install-deps-dev",
15+
"remoteUser": "vscode"
1616
}

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Project environment variables
2-
PROJECT_NAME=template-python
2+
PROJECT_NAME=template-langgraph

.github/workflows/docker-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ jobs:
3737
GIT_REVISION=${{ github.sha }}
3838
GIT_TAG=${{steps.set_version.outputs.no-dash}}
3939
tags: |
40-
${{ secrets.DOCKERHUB_USERNAME }}/template-python:${{steps.set_version.outputs.no-dash}}
41-
${{ secrets.DOCKERHUB_USERNAME }}/template-python:latest
40+
${{ secrets.DOCKERHUB_USERNAME }}/template-langgraph:${{steps.set_version.outputs.no-dash}}
41+
${{ secrets.DOCKERHUB_USERNAME }}/template-langgraph:latest

.github/workflows/ghcr-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
tags:
55
- "v*"
66
env:
7-
IMAGE_NAME: template-python
7+
IMAGE_NAME: template-langgraph
88
jobs:
99
ghcr:
1010
runs-on: ubuntu-latest

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jupyterlab: ## run Jupyter Lab
5757
# Docker
5858
# ---
5959
DOCKER_REPO_NAME ?= ks6088ts
60-
DOCKER_IMAGE_NAME ?= template-python
60+
DOCKER_IMAGE_NAME ?= template-langgraph
6161
DOCKER_COMMAND ?=
6262

6363
# Tools

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![ghcr-release](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/ghcr-release.yaml/badge.svg)](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/ghcr-release.yaml)
55
[![docs](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/github-pages.yaml/badge.svg)](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/github-pages.yaml)
66

7-
# template-python
7+
# template-langgraph
88

99
This is a template repository for Python
1010

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# template-python
1+
# template-langgraph

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
2-
site_name: template-python
2+
site_name: template-langgraph
33
site_url: ""
44
repo_url: https://github.com/ks6088ts-labs/template-langgraph
55
repo_name: ks6088ts-labs/template-langgraph

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "template-python"
2+
name = "template-langgraph"
33
version = "0.0.1"
44
description = "A GitHub template repository for Python"
55
readme = "README.md"

scripts/template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Initialize the Typer application
1111
app = typer.Typer(
1212
add_completion=False,
13-
help="template-python CLI",
13+
help="template-langgraph CLI",
1414
)
1515

1616
# Set up logging

0 commit comments

Comments
 (0)