Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Political Memory
memopol
Commits
56b5ee5e
Commit
56b5ee5e
authored
May 14, 2017
by
okhin
🚴
Browse files
Merge branch 'master' into 'master'
Minor improvements on bin/dev Closes
#192
and
#193
See merge request
!199
parents
90de91bb
6ee07d6f
Pipeline
#1022
passed with stages
in 9 minutes and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bin/dev.sh
View file @
56b5ee5e
...
...
@@ -11,24 +11,27 @@ 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-code=
\"
cd
$REPOROOT
&& source
$REPOROOT
/memopol_env/bin/activate &&
export
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-update-all=
\"
memopol-code && bin/update
_
all
\"
"
>>
$ALIASROOT
echo
"alias memopol-refresh-scores=
\"
memopol-code && memopol refresh_scores
\"
"
>>
$ALIASROOT
if
[
$SHELL
=
"/bin/bash"
]
then
case
$SHELL
in
*
/bash
)
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
RCSHELL
=
"
$HOME
/.bashrc"
;;
*
/zsh
)
echo
"Zsh detected"
echo
"Update
$HOME
/.zshrc file"
RCSHELL
=
"
$HOME
/.zshrc"
;;
*
)
echo
"SHELL not supported. Try using BASH or ZSH, or set alias manually."
RCSHELL
=
"/dev/null"
;;
esac
echo
"source
$ALIASROOT
"
>>
$RCSHELL
source
$ALIASROOT
...
...
@@ -37,5 +40,5 @@ 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
memopol
l
-update-all : Get all the production data"
echo
-e
"
\t
memopol-update-all : Get all the production data"
echo
-e
"
\t
memopol-refresh-scores : Refresh all scores"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment