We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362f0c8 commit 1a063c7Copy full SHA for 1a063c7
2 files changed
.devcontainer/post-create.sh
@@ -36,6 +36,9 @@ ln -sfn "$DEVCONTAINER_ENV_DIR" "$DEVCONTAINER_PYTHON_DIR"
36
export PATH="$DEVCONTAINER_PYTHON_DIR/bin:$PATH"
37
export PYTHONPATH="$REPO_ROOT/src${PYTHONPATH:+:$PYTHONPATH}"
38
39
+echo "Installing Playwright browsers..."
40
+"${HATCH_CMD[@]}" run devcontainer:install_playwright
41
+
42
if ! command -v bun >/dev/null 2>&1; then
43
echo "Installing Bun..."
44
curl -fsSL https://bun.sh/install | bash
pyproject.toml
@@ -212,6 +212,7 @@ extra-dependencies = [
212
]
213
214
[tool.hatch.envs.devcontainer.scripts]
215
+install_playwright = ['python "src/build_scripts/install_playwright.py"']
216
type_check = ["pyright src/reactpy"]
217
218
############################
0 commit comments