Re: Dynamic app loading

2018-08-01 Thread Christian González
Hello Raphael, Thanks for your very, very helpful explanations. Just another 2 questions: I saw that you did two things: 1.: you created a "class ReportsApp(AppConfig):" in /plugins/reports/__init__.py - according to the Django docs[1] this should go into /plugins/reports/apps.py Why in the root

Re: Dynamic app loading

2018-08-01 Thread Raphael Michel
Hi, Am Tue, 31 Jul 2018 23:18:32 +0200 schrieb Christian González : > Whow, I'm quite impressed. Never stumbled upon that. I'll recommend > that for some collegues (to use it...) Thanks =) > But about the internals: Nice, this was the first way I implemented > that as well, and maybe I will come

Re: Dynamic app loading

2018-07-31 Thread Christian González
Hi Raphael, > we are doing such a thing for quite a while in our open source project > pretix[1]. Whow, I'm quite impressed. Never stumbled upon that. I'll recommend that for some collegues (to use it...) But about the internals: Nice, this was the first way I implemented that as well, and maybe I

Re: Dynamic app loading

2018-07-29 Thread Raphael Michel
I stumbled upon a "missing feature" in Django, which I call "dynamic" > app loading, a while ago, since I try to create a Django based > application which can dynamically add plugins to itself. > > I first tried to google the internet, and found many Stackexchange Q&A

Dynamic app loading

2018-07-29 Thread Christian González
; in Django, which I call "dynamic" app loading, a while ago, since I try to create a Django based application which can dynamically add plugins to itself. I first tried to google the internet, and found many Stackexchange Q&A where this topic is handled, but either in an insufficient way