heroku

https://devcenter.heroku.com/articles/heroku-cli - установить консольную программу

heroku apps - установленные приложения

Уничтожьте приложение:

heroku apps:destroy --app example

Создайте новое:

heroku create example

Нажмите на него:

git push heroku -u master
anchikin@outlook.com@Asus MINGW64 /d/nodejs/node_curs/www (master)
git init
Initialized empty Git repository in D:/nodejs/node_curs/www/.git/
 
anchikin@outlook.com@Asus MINGW64 /d/nodejs/node_curs/www (master)
$ git add .
 
 
anchikin@outlook.com@Asus MINGW64 /d/nodejs/node_curs/www (master)
$ git commit -am "init"
 
 
anchikin@outlook.com@Asus MINGW64 /d/nodejs/node_curs/www (master)
$ heroku git:remote -a werwolf100
 »   Warning: heroku update available from 7.7.8 to 7.27.1
set git remote heroku to https://git.heroku.com/werwolf100.git
 
anchikin@outlook.com@Asus MINGW64 /d/nodejs/node_curs/www (master)
$ git add .
warning: LF will be replaced by CRLF in .idea/vcs.xml.
The file will have its original line endings in your working directory.
 
anchikin@outlook.com@Asus MINGW64 /d/nodejs/node_curs/www (master)
$ git commit -am "make it better"
[master 282b3c3] make it better
 1 file changed, 6 insertions(+)
 create mode 100644 .idea/vcs.xml
 
anchikin@outlook.com@Asus MINGW64 /d/nodejs/node_curs/www (master)
$ git push heroku master