Re: [mezzanine-users] What should/would example Fab file settings look like?

2014-04-03 Thread Kyle Pennell
Thanks again, everyone. On Wednesday, April 2, 2014 12:15:20 PM UTC-6, Josh Cartmell wrote: That we did Ken ;) Kyle, now that you bring it up, those two settings are actually unnecessary and I should probably just remove them. Take a look at

[mezzanine-users] What should/would example Fab file settings look like?

2014-04-02 Thread Kyle Pennell
Asking a question for myself and hope it helps other beginners out there. I'm trying to deploy using Fab File and Josh's Tutorialhttp://bitofpixels.com/blog/deploying-mezzanine-to-digital-ocean-using-the-included-fabfile/ . I was trying to fill in the Fabfile settings and simply don't

Re: [mezzanine-users] What should/would example Fab file settings look like?

2014-04-02 Thread Josh Cartmell
Here's what the one I used to deploy to Digital Ocean looked like: FABRIC = { SSH_USER: do, # SSH username SSH_PASS: , # SSH password (consider key-based authentication) SSH_KEY_PATH: /Users/josh/.ssh/id_rsa.pub, # Local path to SSH key file, for key-based auth HOSTS:

Re: [mezzanine-users] What should/would example Fab file settings look like?

2014-04-02 Thread Ken Bolton
You can see that Josh and I used the same source material: https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/project_template/settings.py#L313-L334 On Wed, Apr 2, 2014 at 1:58 PM, Josh Cartmell joshcar...@gmail.com wrote: Here's what the one I used to deploy to Digital Ocean looked

Re: [mezzanine-users] What should/would example Fab file settings look like?

2014-04-02 Thread Ken Bolton
From my tutorial on using Fabric to deploy to Vagrant: FABRIC = { SSH_USER: vagrant, # SSH username SSH_PASS: vagrant, # SSH password (consider key-based authentication) #SSH_KEY: , HOSTS: ['host-name', ], # List of host names or IPs. VIRTUALENV_HOME: /home/vagrant, # Absolute remote path