Firebase is one of my favorite services. They not only provide realtime database and backend but they provide free hosting with custom domains.
Create an account at https://firebase.google.com/
Create an new firebase app in the firebase console
Install the firebase CLI
1 |
npm install -g firebase-tools |
In your ember app folder, run:
1 |
firebase init |
Follow the steps and for the public folder type
1 |
dist |
Deploy with
1 |
firebase deploy |
Visit your deployed app by typing
1 |
firebase open |
Also published on Medium.