10 lines
244 B
Bash
10 lines
244 B
Bash
|
|
# this is /etc/profile
|
||
|
|
# - a login script when running the interactive shell inside the container
|
||
|
|
|
||
|
|
export PYTHONPATH=/app/py
|
||
|
|
export PYSRV_CONFIG_PATH=/app/conf/real-server-config.json
|
||
|
|
export FLASK_ENV=development
|
||
|
|
alias l='ls'
|
||
|
|
alias ll='ls -l'
|
||
|
|
|