This README outlines the details of collaborating on this Ember application. A short introduction of this app could easily go here.
You will need the following things properly installed on your computer.
cd lemonade-ember
yarn install
ember serve
ember build
docker run -p 8080:80 -v $PWD/dist:/usr/share/nginx/html nginx
Now access http://localhost:8080
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)Deployment options are defined on config/deploy.js
or through variable
DEPLOY_HOST
Setup ssh-like server address at file .env.delpoy.<environment>
where
environment can be production, staging or development.
cat << EOF > .env.deploy.development
DEPLOY_HOST=username@ember-example-server.com.br
EOF