mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-14 13:47:07 +03:00
21 lines
352 B
Bash
21 lines
352 B
Bash
|
|
||
|
#
|
||
|
# .bashrc.override.sh
|
||
|
#
|
||
|
|
||
|
# persistent bash history
|
||
|
HISTFILE=~/.bash_history
|
||
|
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
|
||
|
|
||
|
# set some django env vars
|
||
|
source /entrypoint
|
||
|
|
||
|
# restore default shell options
|
||
|
set +o errexit
|
||
|
set +o pipefail
|
||
|
set +o nounset
|
||
|
|
||
|
# start ssh-agent
|
||
|
# https://code.visualstudio.com/docs/remote/troubleshooting
|
||
|
eval "$(ssh-agent -s)"
|