Skip to content

Commit 4abaa23

Browse files
authored
Merge pull request #2 from ks6088ts-labs/rename
Rename project
2 parents 1361bf9 + 7234a28 commit 4abaa23

File tree

19 files changed

+224
-161
lines changed

19 files changed

+224
-161
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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
2626
# Copy application code after dependencies are installed
2727
COPY . .
2828

29-
CMD ["python", "template_python/core.py"]
29+
CMD ["python", "template_langgraph/core.py"]

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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
[![test](https://github.com/ks6088ts/template-python/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/ks6088ts/template-python/actions/workflows/test.yaml?query=branch%3Amain)
2-
[![docker](https://github.com/ks6088ts/template-python/actions/workflows/docker.yaml/badge.svg?branch=main)](https://github.com/ks6088ts/template-python/actions/workflows/docker.yaml?query=branch%3Amain)
3-
[![docker-release](https://github.com/ks6088ts/template-python/actions/workflows/docker-release.yaml/badge.svg)](https://github.com/ks6088ts/template-python/actions/workflows/docker-release.yaml)
4-
[![ghcr-release](https://github.com/ks6088ts/template-python/actions/workflows/ghcr-release.yaml/badge.svg)](https://github.com/ks6088ts/template-python/actions/workflows/ghcr-release.yaml)
5-
[![docs](https://github.com/ks6088ts/template-python/actions/workflows/github-pages.yaml/badge.svg)](https://github.com/ks6088ts/template-python/actions/workflows/github-pages.yaml)
1+
[![test](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/test.yaml?query=branch%3Amain)
2+
[![docker](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/docker.yaml/badge.svg?branch=main)](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/docker.yaml?query=branch%3Amain)
3+
[![docker-release](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/docker-release.yaml/badge.svg)](https://github.com/ks6088ts-labs/template-langgraph/actions/workflows/docker-release.yaml)
4+
[![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)
5+
[![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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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: ""
4-
repo_url: https://github.com/ks6088ts/template-python
5-
repo_name: ks6088ts/template-python
4+
repo_url: https://github.com/ks6088ts-labs/template-langgraph
5+
repo_name: ks6088ts-labs/template-langgraph
66
nav:
77
- Home: index.md
88
theme:

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"

0 commit comments

Comments
 (0)