File tree Expand file tree Collapse file tree 12 files changed +26
-26
lines changed Expand file tree Collapse file tree 12 files changed +26
-26
lines changed Original file line number Diff line number Diff line change 1
1
{
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"
16
16
}
Original file line number Diff line number Diff line change 1
1
# Project environment variables
2
- PROJECT_NAME = template-python
2
+ PROJECT_NAME = template-langgraph
Original file line number Diff line number Diff line change 37
37
GIT_REVISION=${{ github.sha }}
38
38
GIT_TAG=${{steps.set_version.outputs.no-dash}}
39
39
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
Original file line number Diff line number Diff line change 4
4
tags :
5
5
- " v*"
6
6
env :
7
- IMAGE_NAME : template-python
7
+ IMAGE_NAME : template-langgraph
8
8
jobs :
9
9
ghcr :
10
10
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ jupyterlab: ## run Jupyter Lab
57
57
# Docker
58
58
# ---
59
59
DOCKER_REPO_NAME ?= ks6088ts
60
- DOCKER_IMAGE_NAME ?= template-python
60
+ DOCKER_IMAGE_NAME ?= template-langgraph
61
61
DOCKER_COMMAND ?=
62
62
63
63
# Tools
Original file line number Diff line number Diff line change 4
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
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 )
6
6
7
- # template-python
7
+ # template-langgraph
8
8
9
9
This is a template repository for Python
10
10
Original file line number Diff line number Diff line change 1
- # template-python
1
+ # template-langgraph
Original file line number Diff line number Diff line change 1
1
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
2
- site_name : template-python
2
+ site_name : template-langgraph
3
3
site_url : " "
4
4
repo_url : https://github.com/ks6088ts-labs/template-langgraph
5
5
repo_name : ks6088ts-labs/template-langgraph
Original file line number Diff line number Diff line change 1
1
[project ]
2
- name = " template-python "
2
+ name = " template-langgraph "
3
3
version = " 0.0.1"
4
4
description = " A GitHub template repository for Python"
5
5
readme = " README.md"
Original file line number Diff line number Diff line change 10
10
# Initialize the Typer application
11
11
app = typer .Typer (
12
12
add_completion = False ,
13
- help = "template-python CLI" ,
13
+ help = "template-langgraph CLI" ,
14
14
)
15
15
16
16
# Set up logging
You can’t perform that action at this time.
0 commit comments