Tobias Lorenz

Results 9 comments of Tobias Lorenz

@MrYoda Got the same issue. Did you find a solution?

@nklsw I actually don't remember. My answer sounds weird, so I'm wondering if the initial post of this thread has been changed 🤷 I guess I just removed the `CMS_TOOLBAR_HIDE`...

How about using a regex? Something like: https://github.com/Tyrdall/django-require/commit/115d2ff30943458f58bcea5eaebe314cddae94b4 To exclude some files from uglyfying you can use the following setting in your `app.built.js`: ``` ({ fileExclusionRegExp: /^(folder1|folder2|folder3)$/ }) ```

@VdeJong You can add an own admin template `admin/change_form.html` and add some custom JS :) ``` {% extends 'admin/change_form.html' %} {% load staticfiles %} {% block admin_change_form_document_ready %} {{ block.super...

@tsteur I did, but I don't have any experience in PHP. My fork is actually working, but this is nothing which should be merged into an official repo ;)

@crazy-max I'm currently working on a Kubernetes cluster, but I was referring to: https://redis.io/topics/cluster-spec In my amateurish custom solution I replaced `Redis()` with `RedisCluster()` and, of course, made some other...

@toredash I actually don't know what I did exactly. I assume I replaced the `Redis()` class with the `RedisCluster()` class and adjusted settings and whatsoever. https://github.com/phpredis/phpredis/blob/develop/cluster.markdown#readme

@griffinkelly I gave up and added different wsgi.py files for the different domains, which point to different settings with a different ROOT_URLCONF.