app-init.sh 268 B

123456789101112
  1. #!/bin/bash
  2. cd /workspace
  3. echo "Disabling git info in terminal..."
  4. git config codespaces-theme.hide-status 1
  5. git config oh-my-zsh.hide-info 1
  6. echo "Waiting for DB container to come online..."
  7. /usr/local/bin/wait-for localhost:5432 -- echo "DB ready"
  8. echo "Ready!"