-
-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
46 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.166.1/containers/julia | ||
// See https://github.com/julia-vscode/julia-devcontainer/blob/master/Dockerfile for image contents | ||
{ | ||
"name": "Julia (Community)", | ||
"image": "ghcr.io/julia-vscode/julia-devcontainer:1.6.0", | ||
"extensions": ["esbenp.prettier-vscode", "bierner.lit-html", "julialang.language-julia"], | ||
"postCreateCommand": "/julia-devcontainer-scripts/postcreate.jl", | ||
"remoteUser": "vscode", | ||
"forwardPorts": [1234] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"recommendations": ["esbenp.prettier-vscode"] | ||
"recommendations": ["esbenp.prettier-vscode", "bierner.lit-html", "julialang.language-julia"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
// yes! use it!!! | ||
// this one is for when you are only working on the front-end. Have Pluto running in a separate terminal, and then run this debug config. It should launch Firefox. Reload Firefox after making changes. | ||
"type": "firefox", | ||
"name": "Front-end Firefox", | ||
"request": "launch", | ||
"url": "http://localhost:1234/", | ||
"webRoot": "${workspaceFolder}/frontend" | ||
}, | ||
{ | ||
// untested | ||
"type": "pwa-chrome", | ||
"name": "Front-end Chrome", | ||
"request": "launch", | ||
"url": "http://localhost:1234/", | ||
"webRoot": "${workspaceFolder}/frontend" | ||
}, | ||
{ | ||
// this one doesn't work well yet | ||
"type": "julia", | ||
"request": "launch", | ||
"name": "Back-end", | ||
"program": "${workspaceFolder}/.vscode/run.jl", | ||
"stopOnEntry": false, | ||
"cwd": "${workspaceFolder}", | ||
"juliaEnv": "${command:activeJuliaEnvironment}" | ||
} | ||
] | ||
} | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
// yes! use it!!! | ||
// this one is for when you are only working on the front-end. Have Pluto running in a separate terminal, and then run this debug config. It should launch Firefox. Reload Firefox after making changes. | ||
"type": "firefox", | ||
"name": "Front-end Firefox", | ||
"request": "launch", | ||
"url": "http://localhost:1234/", | ||
"webRoot": "${workspaceFolder}/frontend" | ||
}, | ||
{ | ||
// also works!!! | ||
"type": "pwa-chrome", | ||
"name": "Front-end Chrome", | ||
"request": "launch", | ||
"url": "http://localhost:1234/", | ||
"webRoot": "${workspaceFolder}/frontend" | ||
}, | ||
{ | ||
// this one doesn't work well yet | ||
"type": "julia", | ||
"request": "launch", | ||
"name": "Back-end", | ||
"program": "${workspaceFolder}/.vscode/run.jl", | ||
"stopOnEntry": false, | ||
"cwd": "${workspaceFolder}", | ||
"juliaEnv": "${command:activeJuliaEnvironment}" | ||
} | ||
] | ||
} |