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
Copy file name to clipboardExpand all lines: heroku/index.js
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -161,10 +161,6 @@ Generator.prototype.gitForcePush = function gitForcePush() {
161
161
this.log(chalk.yellow('\nBecause you\'re using mongoose, you must add mongoDB to your heroku app.\n\t'+'from `/dist`: '+chalk.bold('heroku addons:add mongohq')+'\n'));
162
162
hasWarning=true;
163
163
}
164
-
if(this.filters.socketio){
165
-
this.log(chalk.yellow('Because you\'re using socketIO, you must enable websockets on your heroku app.\n\t'+'from `/dist`: '+chalk.bold('heroku labs:enable websockets')+'\n'));
166
-
hasWarning=true;
167
-
}
168
164
169
165
if(this.filters.facebookAuth){
170
166
this.log(chalk.yellow('You will need to set environment variables for facebook auth. From `/dist`:\n\t'+
@@ -190,9 +186,8 @@ Generator.prototype.gitForcePush = function gitForcePush() {
190
186
this.log(chalk.green('\nYou may need to address the issues mentioned above and restart the server for the app to work correctly.'));
191
187
}
192
188
193
-
this.log(chalk.cyan('\nTo deploy a new build\n\t'+chalk.bold('grunt build')+
194
-
'\nThen enter the dist folder to commit these updates:\n\t'+chalk.bold('cd dist && git add -A && git commit -m "describe your changes here"')));
195
-
this.log(chalk.cyan('Finally, deploy your updated build to Heroku with\n\t'+chalk.bold('git push -f heroku master')));
0 commit comments