Cristian Vargas
Cristian Vargas
I am trying to run the role on an EC2 instance. By default it comes with an user ubuntu which can sudo. However it seems the role expects to be...
We should have the option to ask users if they want to use channels, just like we do with celery. Setting up channels should be easy, using the in memory...
## Description [//]: # (What's it you're proposing? How should it be implemented?) Drone.io support built-in Add a .drone.yml file that allows projects to be tested/built using drone.io ## Rationale...
## Expected Behavior When I add [CLEAR CACHE] to a commit, the cache is not restored. Instead it is removed so the rebuild step can generate a new one. ##...
`psycopg` has a [documentation section](https://www.psycopg.org/docs/sql.html#module-psycopg2.sql) explaining why you cannot use `%s` for table names (quoting will cause syntax errors). In aiopg examples, there is nothing that shows how this could...
Installing by default the latest version of django-mptt
There are 2 actions in admin for the pages: publish and delete...however there is no way to select them currently.
The issue https://github.com/divio/django-mailchimp/issues/27 has been around forever and hits people on a regular basis. It requires some manual action and that should be specified in the installation steps.
I am requesting some information from the a server, which returns the following (using postman): Headers: Allow →GET, HEAD, OPTIONS CF-RAY →439e4801cf3db955-MIA Connection →keep-alive Content-Encoding →gzip Content-Type →application/json Body: {...
When i have something like: class AInline(NestedStackedInline): model = Column extra = 0 fields = ("content",) class BInline(NestedStackedInline): model = Row extra = 0 inlines = [ AInline, ] #...