This is the front end for my personal website, built with Ember. It is served by the separate Rails API.
Check out the rails and ember docs to learn how to get up and running with those frameworks. If you already have your machine set up for Rails and Ember development, run:
rails s --binding 0.0.0.0
ember s --proxy http://localhost:3000
And visit http://localhost:4200 to see it live!
You will need the following things properly installed on your computer.
git clone <repository-url>
this repository- change into the new directory
npm install
bower install
ember serve
- Visit your app at http://localhost:4200.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.