Hosting Angular 2 on Heroku
Hosting an Angular 2 on Heroku!
Since I started getting into Angular 2 development, I have been looking for easy ways to hosts simple projects. Although there are plenty options available, I decided to go with Heroku, for ease of use and cheap dev options.
In addition to hosting I discovered a pretty neat tool that takes care of scaffolding and boilerplate code for angular projects. To create and deploy a project from scratch I just had to a couple of commands! The project I am using for the examples below is car-dashboard-ng2CLI.
Prerequisites
-Angular CLI installed
-Heroku Toolbelt installed
-Heroku Account created
-Github account setup
Steps are follows:
Create Angular 2 project
ng new car-dashboard-ng2CLI
cd car-dashboard-ng2CLI
ng build
ng serve
Create Heroku App
Login into heroku
heroku login
If you already went into Heroku and created an app there, just link the two with the following:
heroku apps:info --app car-dashboard-ng2CLI
Otherwise just create a brand new one:
heroku create
Connect Project to Heroku
Initialize a git repo
git init
Add heroku as a remote repo
git remote add heroku https://git.heroku.com/car-dashboard-ng2CLI.git
Validate remote exists
git remote -v
Push the project to heroku
git push heroku master
If you are pushing from a branch besides master:
git push heroku your-branch:master --force
View App
After its pushed, you can visit Heroku to check on your app’s deployment, or you can view the logs using
heroku logs
To go directly to the URL, enter
heroku open
If you want to be notified of deployment activity, you can setup a deploy hook to push notifications. Once you have an endpoint, whether it be slack or some other service, just include the endpoint specified by the service as the deploy hook url. For example:
heroku addons:create deployhooks:http --url https://hooks.slack.com/services/**/**/*** --app heroku-app-name-here
And thats it! The new app can now be viewed at https://your-app-name.herokuapp.com/
Mine is at https://gw-car-dashboard.herokuapp.com/
Now all that’s left is to focus on building out your new app!
EXTRA - If you want to remove all commits on your master branch:
Checkout: git checkout --orphan master2
Add all the files: git add -A
Commit the changes: git commit -am "commit message"
Delete the branch: git branch -D master
Rename the current branch to master: git branch -m master
Finally, force update your repository: git push -f origin master