Skip to content

Commit

Permalink
Create vscode launch config
Browse files Browse the repository at this point in the history
  • Loading branch information
meequrox committed Apr 15, 2024
1 parent fb9d3d4 commit 03836cc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# IDE
.idea/
.elixir_ls/
double_gis_monitor.iml

# The directory Mix will write compiled artifacts to.
Expand Down
26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"version":"0.2.0",
"inputs":[
{
"id":"runArgs",
"type":"promptString",
"description":"Enter arguments for `mix run -e`"
}
],
"configurations":[
{
"type":"mix_task",
"name":"mix run",
"request":"launch",
"task":"run",
"taskArgs":[
"-e",
"${input:runArgs}"
],
"startApps":true,
"projectDir":"${workspaceRoot}",
"exitAfterTaskReturns":false
}
]
}

0 comments on commit 03836cc

Please sign in to comment.