Migrate dev:console to standalone script

This commit is contained in:
Claudio Ortolina
2025-10-07 01:05:30 +03:00
parent b131308739
commit ff3b22cf65
2 changed files with 7 additions and 4 deletions
-4
View File
@@ -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'
+7
View File
@@ -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