diff --git a/LICENSE b/LICENSE index ad217e0..843c36f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright Julien Bourdeau +Copyright Julien Bourdeau Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/dev/algolia.test.conf b/dev/algolia.test.conf index 7d61eb1..27a3736 100644 --- a/dev/algolia.test.conf +++ b/dev/algolia.test.conf @@ -8,7 +8,7 @@ upstream myapp { server { listen 80; - server_name algolia.test admin.algolia.test; + server_name algolia.test admin.algolia.test api.dashboard.algolia.test; access_log /var/log/nginx/algolia.test/access.log; error_log /var/log/nginx/algolia.test/error.log; diff --git a/home/functions.sh b/home/functions.sh index bb26f14..cf74012 100644 --- a/home/functions.sh +++ b/home/functions.sh @@ -202,15 +202,6 @@ function getcertnames() { fi; } -# `a` with no arguments opens the current directory in Atom Editor, otherwise -# opens the given location -function a() { - if [ $# -eq 0 ]; then - atom .; - else - atom "$@"; - fi; -} # `o` with no arguments opens the current directory, otherwise opens the given # location @@ -224,7 +215,7 @@ function o() { function homestead() { if [[ $1 == 'edit' ]]; then - atom ~/bin/Homestead/Homestead.yaml + subl ~/bin/Homestead/Homestead.yaml else ( cd ~/bin/Homestead && vagrant $* ) fi;