1
from fabric.api import env
2
3
4
# the user to use for the remote commands
5
env.user = 'user'
6
# the servers where the commands are executed
7
env.hosts = ['server']
8
env.srv_venv_path = 'virtualenv folder path on host'