Migrate dev:console to standalone script
This commit is contained in:
@@ -60,10 +60,6 @@ hide = true
|
|||||||
description = 'Run project tests'
|
description = 'Run project tests'
|
||||||
run = 'mix test'
|
run = 'mix test'
|
||||||
|
|
||||||
[tasks."dev:console"]
|
|
||||||
description = 'Run the application attached to an IEx console'
|
|
||||||
run = 'iex -S mix phx.server'
|
|
||||||
|
|
||||||
[tasks."dev:readme-preview"]
|
[tasks."dev:readme-preview"]
|
||||||
description = 'Preview the README file via a GH flavoured markdown rendered'
|
description = 'Preview the README file via a GH flavoured markdown rendered'
|
||||||
run = 'gh gfm-preview README.md'
|
run = 'gh gfm-preview README.md'
|
||||||
|
|||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
#MISE description="Run the application attached to an IEx console"
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
iex -S mix phx.server
|
||||||
Reference in New Issue
Block a user