[mezzanine-users] Re: What's wrong in my local_settings / how to do basic deploy to aws

2018-04-20 Thread Christian Hoffmann
Hello Wolfang, for AWS you need to configure fabric to use key based login: Try to add the SSH_KEY_PATH Variable to your local_settings.py. FABRIC = { "SSH_USER": "ubuntu", # SSH username "SSH_PASS": "", # SSH password (consider key-based authentication) "SSH_KEY_PATH":

Re: [mezzanine-users] Changing admin inline to "Orderable"

2015-10-13 Thread Christian Hoffmann
Hello, How to enable direct access to the _order field in the admin? Thanks a lot... -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[mezzanine-users] Re: TinyMCE 4

2015-06-29 Thread Christian Hoffmann
and style 3) also the advanced tab for alternative image is missing thanks a lot for your great work on mezzanine. Christian Hoffmann -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from

[mezzanine-users] Re: Changes in Model

2014-04-04 Thread Christian Hoffmann
Hi Tameen, my aproach for a new app is: the first migration if your app is named author python manage.py schemamigration author --initial python manage.py migrate author for every change later on, you need: python manage.py schemamigration author --auto python manage.py migrate author Hope