heroku

How to set CONFIG_PATH in Heroku buildpack

核能气质少年 提交于 2020-12-13 11:52:25
问题 Before I elaborate on the problem, I should let you know that I've successfully installed ffmpegthumbnailer on heroku's bash (heroku run bash). I'm trying to build ffmpegthumbnailer using a custom Heroku buildpack I've written, but when I run ./configure && make install in the bin/compile buildpack file, ffmpegthumbnailer tells me that it can't find the ffmpeg libs (util, format, codec, scale) and suggest that I set the PKG_CONFIG_PATH. So I set the PKG_CONFIG_PATH and it still can't seem to

Heroku: This site can’t be reached

最后都变了- 提交于 2020-12-13 07:38:51
问题 My heroku app cannot be accessed after a build. The logs show that the web server node and worker node both are listening. It's a flask app run by gunicorn and it has 2 addons - newrelic and redistogo. Error: This site can’t be reached. appname.herokuapp.com’s server IP address could not be found. DNS_PROBE_FINISHED_NXDOMAIN Logs: ```2020-02-05T16:24:31.556201+00:00 heroku[worker.1]: Starting process with command `python worker.py` 2020-02-05T16:24:32.278863+00:00 heroku[worker.1]: State

Heroku: This site can’t be reached

久未见 提交于 2020-12-13 07:36:47
问题 My heroku app cannot be accessed after a build. The logs show that the web server node and worker node both are listening. It's a flask app run by gunicorn and it has 2 addons - newrelic and redistogo. Error: This site can’t be reached. appname.herokuapp.com’s server IP address could not be found. DNS_PROBE_FINISHED_NXDOMAIN Logs: ```2020-02-05T16:24:31.556201+00:00 heroku[worker.1]: Starting process with command `python worker.py` 2020-02-05T16:24:32.278863+00:00 heroku[worker.1]: State

How to deploy React application to Heroku

做~自己de王妃 提交于 2020-12-13 05:43:17
问题 I have built a single-page weather app with React and Node.js but can't seem to get it to deploy to Heroku. So far, I have: Created a new app on Heroku called weather-app-react-node Logged into Heroku on the CLI Run the command 'heroku git:remote -a weather-app-react-node' in my terminal Added a Procfile with 'web: npm start' in it Ran 'git add .', 'git commit -m "Pushed to heroku"', 'git push heroku master' My terminal tells me it is deployed and waiting but when I click on the link, I get

Getting two unknown error while trying to upload my app to Heroku

淺唱寂寞╮ 提交于 2020-12-13 04:33:05
问题 I've been the past 2 hours trying to deploy my app to Heroku but i'm getting a lot of errors. I have python 3.8.2 installed. Thanks in advance remote: Collecting xattr==0.6.4 remote: Downloading xattr-0.6.4.tar.gz (15 kB) ERROR: Command errored out with exit status 1: remote: command: /app/.heroku/python/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-zvu2zply/xattr/setup.py'"'"'; __file__='"'"'/tmp/pip-install-zvu2zply/xattr/setup.py'"'"';f=getattr

Export Heroku App to a new GitHub repo [duplicate]

巧了我就是萌 提交于 2020-12-12 11:05:39
问题 This question already has answers here : What is “git remote add …” and “git push origin master”? (6 answers) Closed 2 years ago . I have a Heroku project which I deploy using the Heroku CLI and I would like to transfer this project in a new repo on my GitHub account but I'm getting really confused about how these "remotes" work. I've only found people trying to do the opposite (from GitHub repo to Heroku app). 回答1: A "remote" is pretty much just a name and a couple of URLs. The URLs are

Export Heroku App to a new GitHub repo [duplicate]

孤街醉人 提交于 2020-12-12 11:04:15
问题 This question already has answers here : What is “git remote add …” and “git push origin master”? (6 answers) Closed 2 years ago . I have a Heroku project which I deploy using the Heroku CLI and I would like to transfer this project in a new repo on my GitHub account but I'm getting really confused about how these "remotes" work. I've only found people trying to do the opposite (from GitHub repo to Heroku app). 回答1: A "remote" is pretty much just a name and a couple of URLs. The URLs are

Heroku This site can’t be reached (DNS_PROBE_FINISHED_NXDOMAIN)

天大地大妈咪最大 提交于 2020-12-12 05:45:56
问题 Some of my personal apps and my professional apps on Heroku are not accessible. They don't have a custom domain linked, so I access them via http://.herokuapp.com Most of the time, they work great, but often I receive following response from my browser This site can’t be reached <myapp>.herokuapp.com’s server IP address could not be found. DNS_PROBE_FINISHED_NXDOMAIN The app is up and running. It does not crash (as I haven't made any changes to it in a while). I have tried restarting all

Heroku This site can’t be reached (DNS_PROBE_FINISHED_NXDOMAIN)

让人想犯罪 __ 提交于 2020-12-12 05:43:26
问题 Some of my personal apps and my professional apps on Heroku are not accessible. They don't have a custom domain linked, so I access them via http://.herokuapp.com Most of the time, they work great, but often I receive following response from my browser This site can’t be reached <myapp>.herokuapp.com’s server IP address could not be found. DNS_PROBE_FINISHED_NXDOMAIN The app is up and running. It does not crash (as I haven't made any changes to it in a while). I have tried restarting all

Django + Heroku + MongoDB Atlas (Djongo) = DatabaseError with No Exception

时光总嘲笑我的痴心妄想 提交于 2020-12-12 05:37:47
问题 One line description of the issue Whenever my django app deployed on heroku tries to access my MongoDB Atlas cluster to submit a form or check an admin login it throws something like the attached error. Extra Details Error reproducible on heroku build here I think that this is error has to do with how heroku interacts with my MongoDB Atlas cluster, as I am able to get the app to successfully read and make modifications do different records in my database when I run the build locally. I have