You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into some issues when trying to set this up on my Windows computer. I installed Flask-base using Bash on Ubuntu on Windows (because Redis does not currently support Windows).
On configuring flask-base, running honcho start -f Local would result in redis.exceptions.ConnectionError: Error 111 connecting to localhost:6379. Connection refused. so I could not launch the app.
I fixed this by following this guide. For some reason I also had to also edit /etc/redis/redis.conf and replace port 6379 (default) with something different like port 6378 and then setting REDISTOGO_URL=http://localhost:6378 in Flask-base config.env
The text was updated successfully, but these errors were encountered:
I ran into some issues when trying to set this up on my Windows computer. I installed Flask-base using Bash on Ubuntu on Windows (because Redis does not currently support Windows).
On configuring flask-base, running
honcho start -f Local
would result inredis.exceptions.ConnectionError: Error 111 connecting to localhost:6379. Connection refused.
so I could not launch the app.I fixed this by following this guide. For some reason I also had to also edit
/etc/redis/redis.conf
and replaceport 6379
(default) with something different likeport 6378
and then settingREDISTOGO_URL=http://localhost:6378
in Flask-base config.envThe text was updated successfully, but these errors were encountered: