Changed hostname to only take first IP

This commit is contained in:
Fergal Moran
2017-01-25 15:56:05 +00:00
parent 78ca7db705
commit 2083481491

View File

@@ -1,4 +1,4 @@
IP=$(hostname -I)
IP=$(hostname -I | cut -d' ' -f1)
#Django stuff
alias djrun="source /home/fergalm/dev/personal/deepsouthsounds.com/dss.docker/api_env && python manage.py runserver 0.0.0.0:8001"