Skip to content

Commit 8bdbf7c

Browse files
authored
chore: disable git info in zsh prompt in dev environment
1 parent ffe824b commit 8bdbf7c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

docker/scripts/app-init.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ WORKSPACEDIR="/workspace"
44

55
sudo service rsyslog start &>/dev/null
66

7+
# Turn off git info in zsh prompt (causes slowdowns)
8+
git config oh-my-zsh.hide-info 1
9+
710
# Fix ownership of volumes
811
echo "Fixing volumes ownership..."
912
sudo chown -R dev:dev "$WORKSPACEDIR/.parcel-cache"
@@ -110,13 +113,13 @@ if [ -z "$EDITOR_VSCODE" ]; then
110113
echo
111114
echo "You can execute arbitrary commands now, e.g.,"
112115
echo
113-
echo " ietf/manage.py check && ietf/manage.py runserver 0.0.0.0:8000"
116+
echo " ietf/manage.py runserver 0.0.0.0:8000"
114117
echo
115118
echo "to start a development instance of the Datatracker."
116119
echo
117120
echo " ietf/manage.py test --settings=settings_sqlitetest"
118121
echo
119-
echo "to run all the tests."
122+
echo "to run all the python tests."
120123
echo
121124
zsh
122125
else

0 commit comments

Comments
 (0)