Merge branch 'main' of git.inhji.de:inhji/dotfiles

This commit is contained in:
Inhji 2024-02-01 15:51:24 +01:00
commit a58e02e433
1 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,11 @@ if type -q (which lsd &> /dev/null)
alias ll="lsd -l"
end
# Docker Compose
alias dcu="docker compose up -d --build"
alias dcd="docker compose down --remove-orphans"
alias dcr="dcd && dcu"
# Elixir / phoenix aliases
alias phx="iex -S mix phx.server"
alias kirb="php -S localhost:4000 kirby/router.php"