heroku-toolbelt Questions
9
Solved
I launched a node.js server with the following line to set the port:
app.set('port', process.env.PORT || 8080);
This means that, it should either read the PORT env variable or default to 8080, a...
Coextend asked 24/2, 2015 at 21:2
32
Following this heroku tutorial to launch an app on heroku. But when I use the command heroku create, it says it's not recognized. I added C:\Program Files\Heroku to my PATH. How do I fix this?
Primateship asked 11/2, 2017 at 0:12
21
Solved
I have executed:
$ heroku login
But when I try to push, I'm still asked for authentication:
$ git push heroku master
Username for 'https://git.heroku.com': <email>
Password for 'https://&...
Kaylil asked 7/1, 2015 at 2:11
7
Solved
I want to host my source on bitbucket using git because I obviously get a free private repo and I want to host my app on heroku using the source code from bitbucket.
Can i do it using the github ...
Hygroscope asked 5/11, 2012 at 20:55
5
I am trying to login to my heroku account.
I keep getting an error message that says "There was a problem with your login". There are no details of what the problem is.
I tried changing my passwo...
Vondavonni asked 17/6, 2017 at 22:55
1
I'm using thor to write command-line tasks (in a rails 3 app) and trying to pipe input to them over heroku, e.g. cat somefile.csv | heroku run thor sometask
works great on my local machine cat som...
Ceric asked 9/12, 2013 at 13:35
7
Solved
I am suing Heroku dev plan for creating database using PostgreSQL. Database is created in Heroku. After running heroku pg:info command
$ heroku pg:info
=== HEROKU_POSTGRESQL_XXX_URL
Plan: Hobby-de...
Fustanella asked 27/11, 2013 at 13:7
7
Solved
I was trying to run
heroku run rake db:migrate
And was getting the error
Cannot run more than 1 Free size dynos.
See below for how to fix...
Raisaraise asked 11/1, 2016 at 17:30
9
Solved
Doesn't seem to be a way to do it from the command line, and when I do this from the site, I run into this issue when I try to git push heroku master:
! No such app as [previous app name].
Is t...
Genius asked 4/1, 2013 at 16:37
3
Solved
Under scripts in package.json I have the following.
'refresh': node refresh db
Is there a way to trigger this particular npm script on a NodeJS app deployed on Heroku.
Faa asked 25/7, 2016 at 15:6
5
I am using Heroku toolbelt:
Command line: >heroku create app1 (root application)
Delete app1 from Heroku Dashboard in the browser.
Command line: >heroku create app2 (from the same root appl...
Smallminded asked 29/12, 2017 at 2:27
5
i have to switch heroku account from one to another .i tried using heroku login.but when i try to deploy my app using command
git push heroku master
but i am getting error
Agent admitted fail...
Arrogant asked 9/10, 2013 at 19:29
6
Solved
I'm getting this error, but obviously I'm connected! I entered a ticket with Heroku 15 hours ago but received no response.
C:\>heroku config
Enter your Heroku credentials.
Email: myemail@mydoma...
Fog asked 8/3, 2014 at 22:55
2
I want to do this action:
using Heroku CLI.
If I have the remote git on my computer I can do git push my-heroku-remote master
But because my heroku app is already connected to the git project, ...
Encrinite asked 18/3, 2018 at 14:9
4
Solved
When I successfully log in on the command line using my personal account using:
$heroku login
Enter your Heroku credentials.
Email: [email protected]
Password (typing will be hidden):
Authen...
Invisible asked 14/10, 2013 at 4:11
6
Solved
Heroku toolbelt is always forcing me to write an app name at the end like this:
heroku pg:reset DATABASE --app [app_name]
Is there a way to set the default app to which all my CLI heroku c...
Compare asked 9/7, 2013 at 18:1
3
Solved
Is it possible to stop a deploy to Heroku (git push heroku) that is currently being built?
Something like heroku run stopit!
Btw. rolling back after successful deploy is not what I'm looking for....
Lobscouse asked 31/1, 2017 at 14:44
3
Solved
To set config vars for a Heroku app, you do this:
$ heroku config:set GITHUB_USERNAME=joesmith
How would I set a config var with the contents of a file?
Untouched asked 15/9, 2013 at 18:5
3
Solved
I have more than one app/git remote at heroku and I would like to know if it is possible to configure a default application so that, whenever I forget to specify the app (--app), the toolbelt would...
Backspin asked 5/7, 2013 at 23:9
4
Solved
I'm looking for a straightforward explanation of what all happens when I enter the following command:
heroku ps:scale web=1
What is Heroku doing behind the scenes to deploy the app? I ask beca...
Praseodymium asked 19/5, 2015 at 6:37
5
Solved
Trying to fully automate Heroku's Review Apps (beta) for an app. Heroku wants us to use db/seeds.rb to seed the recently spun up instance's DB.
We don't have a db/seeds.rb with this app. We'd like...
Chipper asked 23/10, 2015 at 0:51
6
Solved
I've been having some issues installing the Heroku toolbelt on Windows 10, 64-bit.
It's the first time I install Heroku. I downloaded it from https://toolbelt.heroku.com/windows.
After installing...
Heptad asked 25/11, 2015 at 3:48
1
Solved
I'm tired of entering the name of my app each time I run a heroku command in the terminal:
heroku run rake db:migrate --app myapp
heroku run rake db:seed --app myapp
heroku run rake sth:else --app...
Numen asked 2/4, 2019 at 8:56
2
Solved
I have two git branches, staging and production, and I deployed them on Heroku in the same Heroku acccount. Suppose my app names are app1.heroku-app.com and app2.heroku-app.com and the remote names...
Molli asked 11/12, 2015 at 13:47
1
So, I want to test my app locally, but something goes wrong.
After installing virtualenv, activating it, installing requirements.txt and running collectstatic I try to run app with
heroku local we...
Chert asked 12/8, 2017 at 13:24
1 Next >
© 2022 - 2024 — McMap. All rights reserved.