Skip to content

Commit 3bbadc1

Browse files
committed
config
1 parent 07cec31 commit 3bbadc1

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@ FROM mcr.microsoft.com/devcontainers/python:3.12-bullseye
33

44
# Install Poetry
55
RUN curl -sSL https://install.python-poetry.org | python3 -
6-
7-
# Install Poetry Plugins
8-
RUN poetry self add poetry-dotenv-plugin || true && poetry self add poetry-bumpversion || true

.devcontainer/devcontainer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
"build": {
44
"dockerfile": "Dockerfile"
55
},
6+
"containerEnv": {
7+
"PATH": "/root/.local/bin:$PATH"
8+
},
69
"postCreateCommand": "bash .devcontainer/post-create.sh"
710
}

.devcontainer/post-create.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ echo "🚀 Setting up Langfuse Python SDK development environment..."
66

77
# Install project dependencies including all extras
88
echo "📚 Installing project dependencies..."
9+
poetry self add poetry-dotenv-plugin || true
10+
poetry self add poetry-bumpversion || true
911
poetry install --all-extras
1012

1113
# Setup pre-commit hooks

0 commit comments

Comments
 (0)