diff --git a/bin/dev.sh b/bin/dev.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c24b2b0e1d51d231b3c2461c4b29a012f2eb821 --- /dev/null +++ b/bin/dev.sh @@ -0,0 +1,41 @@ +#!/bin/bash +# Script to setup few usual aliases to facilitate the development +# This aliases should work if you've installed memopol throught the quickstart +# script or the documentation +# It : +#  - Setup automaticaly the venv +#  - Setup Django in DEBUG mode +# You just need to add a line in you're .bashrc or .zshrc to load them: + +REPOROOT="$( readlink -m "${BASH_SOURCE[0]}"/../..)" +ALIASROOT=$REPOROOT"/.memopol.alias" +echo $ALIASROOT +echo "Create a dedicated alias file in $ALIASROOT" +echo "alias memopol-code=\"cd $REPOROOT && source $REPOROOT/memopol_env/bin/activate && DJANGO_DEBUG=True\"" > $ALIASROOT +echo "alias memopol-launch=\"memopol-code && memopol runserver\"" >> $ALIASROOT +echo "alias memopol-update-all=\"memopol-code && bin/update-all\"" >> $ALIASROOT +echo "alias memopol-refresh-scores=\"memopol-code && memopol refresh_scores\"" >> $ALIASROOT + +if [ $SHELL = "/bin/bash" ] +then + echo "Bash detected" + echo "Update $HOME/.bashrc file" + RCSHELL="$HOME/.bashrc" +elif [ $SHELL = "/bin/zsh" ] +then + echo "Zsh detected" + echo "Update $HOME/.zshrc file" + RCSHELL="$HOME/.zshrc" +else + echo "SHELL don't supported. Try using BASH or ZSH, or manually." +fi + +echo "source $ALIASROOT" >> $RCSHELL +source $ALIASROOT + + +echo -e "You can use the following aliases :\n" +echo -e "\t memopol-code : Go into the repository and activate the virtualenv" +echo -e "\t memopol-launch : Run the development server" +echo -e "\t memopoll-update-all : Get all the production data" +echo -e "\t memopol-refresh-scores : Refresh all scores"