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 was not sure where to ask for help with this, hence raising an issue here. Any help is appreciated.
I tried running freegeoip as a Heroku app by first cloning the app source code in my local Windows machine. I need to increase the limit of 10,000 requests per hour. To do this, I tried two methods:
Change the contents of apiserver/config.go by adding a line RateLimitLimit: 0, inside func NewConfig() *Config { return &Config{ } }
Create a file prod.env with the line FREEGEOIP_RATELIMITLIMIT=50000
Neither of which worked. When I open my app home page, I still see
9997 calls remaining, resets in 59 minutes
Where am I going wrong?
The text was updated successfully, but these errors were encountered:
I was not sure where to ask for help with this, hence raising an issue here. Any help is appreciated.
I tried running
freegeoip
as a Heroku app by first cloning the app source code in my local Windows machine. I need to increase the limit of 10,000 requests per hour. To do this, I tried two methods:apiserver/config.go
by adding a lineRateLimitLimit: 0,
insidefunc NewConfig() *Config { return &Config{ } }
prod.env
with the lineFREEGEOIP_RATELIMITLIMIT=50000
Neither of which worked. When I open my app home page, I still see
Where am I going wrong?
The text was updated successfully, but these errors were encountered: