initial devcontainer setup

This commit is contained in:
Jeff Clement 2025-07-18 23:12:35 +00:00
commit b9b7aa6a08
Signed by: jeff
GPG key ID: 3BCB43A3F0E1D7DA
14 changed files with 411 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# Change to the project root directory
cd $PROJECT_ROOT
# Trust all tools and plugins defined in mise.toml
mise trust --all
# Install all tools and plugins defined in mise.toml
mise install
# Activate mise environment for bash
eval "$(mise activate bash)"
# Run 'mix setup' only if mix.exs exists (i.e., if this is an Elixir project)
if [ -f mix.exs ]; then
mix setup
fi