heroku-toolbelt

Can't login to heroku anymore

隐身守侯 提交于 2020-01-07 03:52:13
问题 I am not sure what exactly happened. I had to switch accounts, so logged out of one account to login to another- heroku auth:login These are my terminal commands- hello@world:~/$ heroku auth:login Error reading plugin: heroku-git. See /home/helloworld/.heroku/error.log for more information. Enter your Heroku credentials. Email: zzzzzzz@gmail.com Password (typing will be hidden): ▸ Post https://api.heroku.com/oauth/authorizations: dial tcp: lookup api.heroku.com on 127.0.1.1:53: cannot

Heroku Login failed using Windows CLI

▼魔方 西西 提交于 2020-01-02 22:04:32
问题 I had downloaded and installed heroku-toolbelt for my Window PC. I wanted an application to be deployed to heroku , but My login fails Please help me to solve this problem The error messages are written below. C:\Users\shree1>heroku login DL is deprecated, please use Fiddle Enter your Heroku credentials. Email: xxxx@xxx.com Password (typing will be hidden): C:/Ruby200-x64/lib/ruby/2.0.0/Win32API.rb n `initialize': No such file or directory (LoadError) from C:/Ruby200-x64/lib/ruby/2.0.0

The heroku command exists in these Ruby versions?

风流意气都作罢 提交于 2020-01-02 02:52:13
问题 After I updated my Ruby version with rbenv I wasn't able to use the Heroku command-line tool. I got this error: > heroku rbenv: heroku: command not found The `heroku' command exists in these Ruby versions: 2.0.0-p195 Reinstalling the tool belt from toolbelt.heroku.com didn't help. 回答1: I switched to my previous Ruby version 2.0.0p195 and uninstalled the gem 'heroku' rbenv global 2.0.0p195 gem uninstall heroku Then I switched to the latest Ruby version 2.0.0p353 and reinstalled Toolbelt

Can't create files Heroku Cedar-14

瘦欲@ 提交于 2019-12-25 05:34:10
问题 So I have an application + Application Folder | --- index.php --- folder 1 --- folder 2 I want to create a data folder outside this 'Application folder'. Problem: If I go 1 up in the tree and try to do a git push, heroku doesn't let me + 1 up from application folder | + --- Application Folder + --- Data folder And I can't ssh into the box and create a folder because it tells me it's a read only file system. FYI: The dashboard app settings say it's on cedar 14. And I'm running on a free

Heroku comannd always fails

旧巷老猫 提交于 2019-12-25 04:13:40
问题 I installed heroku-toolbelt.exe on Windows10. Whenever i enter "heroku" on the command prompt, it fails as below. I don't know what the prblrm is. Any help would be greatly appreciated. noriko@NORIKO-VAIO C:\Users\noriko > heroku --version Installing Heroku Toolbelt v4... done. For more information on Toolbelt v4: https://github.com/heroku/heroku-cli Setting up node-v4.1.2... done Updating plugins... done Installing core plugins heroku-cli-addons, heroku-apps, heroku-fork, heroku-git, heroku

Deploy my app on heroku

白昼怎懂夜的黑 提交于 2019-12-25 03:34:40
问题 I am learning how to deploy my app on Heroku and need some guidance. Background: My app currently runs locally, and accesses MySQL database on my machine to pull data for making phone calls to people via Twilio. The scripts in my app are in PHP. So I what I want to do is to push both the scripts and mysql database onto heroku's cloud and schedule a specific script to run. I have tried reading tutorials online (the most helpful one has been this), but I am still unable to figure the following:

Django and Heroku: Static files work with 'foreman start' but not './manage.py runserver'

假装没事ソ 提交于 2019-12-23 23:25:47
问题 I have added my own answer to the answers below, this has been solved. I am able to serve up static files when powering up the server using the heroku tool foreman : $ foreman start 12:25:21 web.1 | started with pid 33574 12:25:21 web.1 | 2013-04-10 12:25:21 [33577] [INFO] Starting gunicorn 0.17.2 12:25:21 web.1 | 2013-04-10 12:25:21 [33577] [INFO] Listening at: http://0.0.0.0:5000 (33577) 12:25:21 web.1 | 2013-04-10 12:25:21 [33577] [INFO] Using worker: sync 12:25:21 web.1 | 2013-04-10 12:25

Git Heroku Permission Denied Public Key (after adding public key)

时光总嘲笑我的痴心妄想 提交于 2019-12-21 09:22:03
问题 I'm on Windows 7 64-bit. I'm using the latest Heroku Toolbelt and the GitHub Windows App (downloaded two days ago). Two days ago everything was perfect. I installed PHP and Apache, and suddenly Heroku just gives me Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists I have done these two commands repeatedly. heroku keys:clear heroku keys:add I've deleted my keys and remade them. I've

How to use php artisan migrate command of Laravel4 in Heroku?

荒凉一梦 提交于 2019-12-21 07:22:05
问题 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-dev Status: available Connections: 1 PG Version: 9.3.1 Created: 2013-11-27 04:00 UTC Data Size: 6.4 MB Tables: 0 Rows: 0/10000 (In compliance) Fork/Follow: Unsupported Rollback: Unsupported Result shows zero tables, which is correct. In my local machine tables are created by using following command

How to use php artisan migrate command of Laravel4 in Heroku?

烈酒焚心 提交于 2019-12-21 07:21:41
问题 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-dev Status: available Connections: 1 PG Version: 9.3.1 Created: 2013-11-27 04:00 UTC Data Size: 6.4 MB Tables: 0 Rows: 0/10000 (In compliance) Fork/Follow: Unsupported Rollback: Unsupported Result shows zero tables, which is correct. In my local machine tables are created by using following command