mirror of
https://github.com/requarks/wiki.git
synced 2026-08-26 21:27:10 -05:00
13 lines
268 B
Bash
13 lines
268 B
Bash
#!/bin/bash
|
|
|
|
cd /workspace
|
|
|
|
echo "Disabling git info in terminal..."
|
|
git config codespaces-theme.hide-status 1
|
|
git config oh-my-zsh.hide-info 1
|
|
|
|
echo "Waiting for DB container to come online..."
|
|
/usr/local/bin/wait-for localhost:5432 -- echo "DB ready"
|
|
|
|
echo "Ready!"
|