Commit 8e5fa3e8ee07779e84af6b003eb4272ba542578a

Authored by Fabio Kaiser Rauber
1 parent 8ddbf9d3

Updating fabfile

Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
fabfile.py
... ... @@ -11,12 +11,13 @@ env.use_shell = False
11 11 environments = {
12 12 'dev': {
13 13 'hosts': ['127.0.0.1'],
14   - 'port': 2222,
15 14 'key_filename': '~/.vagrant.d/insecure_private_key',
  15 + 'port': 2222,
16 16 },
17 17 'live': {
18   - 'hosts': [], #TODO
  18 + 'hosts': ['10.1.2.153'],
19 19 'key_filename': '~/.ssh/id_rsa',
  20 + 'port': 22,
20 21 },
21 22 'demo': {
22 23 'hosts': ['colab-demo.tracy.com.br'],
... ...