Skip to content

Commit 95ed727

Browse files
fix: use mix setup in mise task to include asset compilation
The mise setup task was calling deps.get and ecto.setup directly, bypassing the mix setup alias which also runs assets.setup (installs esbuild + tailwind) and assets.build (compiles JS + CSS). This caused app.js to be missing when using mise run setup. Fixes #3
1 parent 24e0bd0 commit 95ed727

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

mise.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ description = "Install dependencies and set up the project"
1414
run = """
1515
mix local.hex --force
1616
mix local.rebar --force
17-
mix deps.get
18-
mix ecto.setup
17+
mix setup
1918
"""
2019

2120
[tasks.server]

0 commit comments

Comments
 (0)