Skip to content
This repository has been archived by the owner on May 18, 2019. It is now read-only.

eubr-bigsea/citron

Repository files navigation

Citron

Build Status

This README outlines the details of collaborating on this Ember application. A short introduction of this app could easily go here.

Prerequisites

You will need the following things properly installed on your computer.

Installation

Running / Development

Running with docker

ember build
docker run -p 8080:80 -v $PWD/dist:/usr/share/nginx/html nginx

Now access http://localhost:8080

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Building

  • ember build (development)
  • ember build --environment production (production)

Deploying

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

Further Reading / Useful Links