[mezzanine-users] When to use multiple projects, instances, sites?

2016-07-24 Thread gdx9000
Hello I created a VirtualEnv1, inside that mezzanine project Mezz1 for a domain Site1.com. I now want to make more websites for Site2.com. How do I decide among the three choices: 1. Create a separate VirtualEnv2, inside that Mezz2 for new domain Site2.com, OR 2. Create new mezzanine

[mezzanine-users] MySQL + uWSGI support

2016-07-18 Thread gdx9000
I see that fabfile.py only supports PostgreSQL and Gunicorn. Are there any plans to support MySQL and uWSGI ? Yes, I know that I can edit local_settings file for MySQL. I also know that I can code the support myself but I am looking for any patches, templates etc to use *fabfile.py* with

[mezzanine-users] Re: Mezzanine fabric deploy support for uwsgi server

2016-07-18 Thread gdx9000
I am looking for uWSGI deployment support. I cannot download your diff patch. Can you please post here? On Wednesday, September 18, 2013 at 1:49:31 PM UTC-4, Rodney Morison wrote: > > For the past 2 years I've been using uwsgi over gunicorn, including for my > Mezzanine deploys. I finally got

Re: [mezzanine-users] When to use multiple projects, instances, sites?

2016-08-05 Thread gdx9000
Thank you Eduardo. I like Option 3. But, how much of coding is required to enable Admin for each site? I cannot find documentation of what *.py to create and/or modify for this. On Sunday, July 24, 2016 at 5:45:52 PM UTC-4, Eduardo Rivas wrote: > > Hey there. > > If you want to use the same

[mezzanine-users] collectstatic ignores App's static

2016-09-06 Thread gdx9000
Hi I have STATIC_* variables set and necessary django.contrib.staticfiles included in INSTALLED_APPS in my settings.py My website name is example.com. So, my Installation is /sites/mezzanine/example. Inside this, I have another directory called example containing settings.py. That is,

[mezzanine-users] Customizing default template files

2016-09-12 Thread gdx9000
I created APP directory and inside that templates directory. I copied base.html from PROJECT/templates to PROJECT/APP/templates. Without specifying 'loaders' for TEMPLATES{"OPTIONS"}, my app's base.html is ignored. I created HOST_THEMES. Still, same behavior! A. Which of the following is

[mezzanine-users] HOST_THEMES

2016-09-12 Thread gdx9000
Hello, I have a few questions about multitenancy and template customization 1. Can HOST_THEMES be used to serve different template for www.example.com and example.com, if I have www.example.com and example.com defined under Admin->Settings->Sites ? 2. Can HOST_THEMES be used to serve

[mezzanine-users] Should I namespace for templates/ and static/ directories

2016-10-18 Thread gdx9000
Is it a good practice to namespace* templates/ *and *static/* directories with app name for my two mezzanine apps: *theme1* and *theme2* ? For example, is it good idea to create template files like this: *theme1/templates/theme1/*.html* and static files like this: