Skip to content

Commit

Permalink
Finish frontend
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Luis Cano Rodríguez <[email protected]>
  • Loading branch information
astrojuanlu committed Jan 30, 2025
1 parent d8e1f76 commit 7939a7c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@

"postStartCommand": {
"backend": "nohup bash -c 'uv run python package/kedro_viz/server.py demo-project &' > backend.out 2> backend.err < /dev/null",
// "frontend": "nohup bash -c 'npm start &' > frontend.out 2> frontend.err"
// FIXME: Looks like the frontend is not needed? The backend stands on its own
"frontend": "nohup bash -c 'npm start &' > frontend.out 2> frontend.err"
},

"customizations": {
Expand Down
3 changes: 3 additions & 0 deletions .devcontainer/onCreateCommand.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ uv venv $VIRTUAL_ENV

uv pip install -r package/test_requirements.txt -r demo-project/src/docker_requirements.txt
uv pip install -e package/

# Now the NPM dependencies too
npm install

0 comments on commit 7939a7c

Please sign in to comment.