[symfony-users] Re: Do you use more than one app?

2009-10-27 Thread Florian
Or use a plugin, no ? It's accessible from all apps. On Oct 26, 10:45 pm, Greg Maruszeczka gma...@gmail.com wrote: On Mon, 26 Oct 2009 19:26:55 -0200 Sid Ferreira sid@gmail.com wrote: Hi everyone! Well, there's a while that I always use only one app. Even in the admin I use routes

[symfony-users] Re: Do you use more than one app?

2009-10-27 Thread Alex Gilbert
We've been doing a single app for a while as well, but this is because the admin interface is just an additional UI layer on the frontend interface for most of our projects. Very rarely do we have a need for what would behave like a separate, backend app. On Oct 26, 5:26 pm, Sid Ferreira

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread david
Yes :P On Mon, 26 Oct 2009 22:26:55 +0100, Sid Ferreira sid@gmail.com wrote: Hi everyone! Well, there's a while that I always use only one app. Even in the admin I use routes instead of another app. The reason to that is that I don't want to duplicate files (CSS and JS), and so far

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread Sid Ferreira
David: Could you share with me how you use it? Single domain, one app for each domain/subdomain... I wanna find out where I may be doing something wrong :D On Mon, Oct 26, 2009 at 19:32, david da...@inspiredthinking.co.uk wrote: Yes :P On Mon, 26 Oct 2009 22:26:55 +0100, Sid Ferreira

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread Greg Maruszeczka
On Mon, 26 Oct 2009 19:26:55 -0200 Sid Ferreira sid@gmail.com wrote: Hi everyone! Well, there's a while that I always use only one app. Even in the admin I use routes instead of another app. The reason to that is that I don't want to duplicate files (CSS and JS), and so far didn't found

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread david
Usually a simple approach. Once frontend app per logical domain (subdomain business domain are usually the same for apps we develop), a single back-end application for admins. You don't often need full CRUD in every sf application - and keeping things separate helps reduce risk.

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread Alexandru-Emil Lupu
Sid, i don't wanna disapoint you, but i guess you're the only one. For the js, css, uplads and so on, there is a directive called alias in apache example: Alias /sf /srv/symfony/1.2/data/web/sf Directory /srv/symfony/1.2/data/web/sf AllowOverride All Allow from All

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread Sid Ferreira
Now, that's a nice trick!!! On Mon, Oct 26, 2009 at 19:45, Greg Maruszeczka gma...@gmail.com wrote: On Mon, 26 Oct 2009 19:26:55 -0200 Sid Ferreira sid@gmail.com wrote: Hi everyone! Well, there's a while that I always use only one app. Even in the admin I use routes instead of another

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread Eno
On Mon, 26 Oct 2009, Sid Ferreira wrote: David: Could you share with me how you use it? Single domain, one app for each domain/subdomain... I wanna find out where I may be doing something wrong :D There is no wrong or right way it depends on how you want to organize code. Maybe different

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread Sid Ferreira
Alexandru, see, I'm not disappointed, but excited. I've just found ways to improve my work! I have too few time to research, so, anything like this is like gold :D On Mon, Oct 26, 2009 at 20:51, Eno symb...@gmail.com wrote: On Mon, 26 Oct 2009, Sid Ferreira wrote: David: Could you share

[symfony-users] Re: Do you use more than one app?

2009-10-26 Thread david
This is handy snippet that allows module based css to be included - a handy way to reuse style (when extended) js. http://snippets.symfony-project.org/snippet/306 On Tue, 27 Oct 2009 00:00:23 +0100, Sid Ferreira sid@gmail.com wrote: Alexandru, see, I'm not disappointed, but excited.