Douglas Petrin Bertini

Results 10 comments of Douglas Petrin Bertini

I have the same problem here. When you click inside the iframe or scroll down, the bottom of the page starts to increase and when it starts to increase it...

@midi292 thank you! I stopped the infinite looping within just the autoReize : false and changing the limit of the iframe height.

@rohitjain00 that would be nice for sure!

@Ishan3333 I had the same situation, so you can try this: In your package.json change to those lines: "scripts": { "start": "react-scripts start", "build": "react-scripts build && npm run build-rename...

@trodicaro did you just remove the dict DATABASES = { } ? in your settings.py you just added this line? DATABASES['default'] = dj_database_url.config(default="mysql://myname:mypass@localhost:3306/db_name")

I just figure it out doing this: # settings.py `DATABASES = { 'default': dj_database_url.config( default=config('DATABASE_URL') ) }` # .env `DATABASE_URL= "mysql://myuser:mypass@my_host:3306/my_db_name"` =)

Yeah, a little annoying it. Just found it and created another "workaround" file `.env.test.local `which now is working. `dotenv (2.7.6)`

Any news on this feature request? Or another work around for it?

this is probably happening because you're missing the .aws/credentials file, or perhaps in your config file you are trying to download it but somehow it is not able to. for...

Amazing! I bet a lot of devs were expecting this hehe. I was building my own endpoints using Golang, but with that, it will speed up a lot the development...