Skip to content

Commit

Permalink
Add pythonpath again
Browse files Browse the repository at this point in the history
  • Loading branch information
BurnySc2 committed Oct 13, 2024
1 parent ccd4d14 commit e9cb62b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion twitch_stream_announcer/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "src/stream_announcer.py",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PONY_DEBUG": "False",
"PYTHONPATH": "${workspaceFolder}",
}
},
]
Expand Down
2 changes: 2 additions & 0 deletions twitch_stream_announcer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ RUN poetry install --without dev

COPY src /root/stream_announcer/src

ENV PYTHONPATH=$PYTHONPATH:/root/stream_announcer

CMD ["poetry", "run", "python", "src/stream_announcer.py"]

0 comments on commit e9cb62b

Please sign in to comment.