Skip to content

Latest commit

 

History

History
93 lines (46 loc) · 1.98 KB

README.md

File metadata and controls

93 lines (46 loc) · 1.98 KB

Crowdbrew-frontend

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

Development workflow

Do not push directly into main branches. Submit pull requests.

Prerequisites

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

⚠️ Do not use npm and ember install

This project uses Yarn.

  • Install Yarn:

      npm i -g yarn
    
  • Install this project's npm dependencies with yarn:

      yarn install
    
  • Install an ember addon:

      yarn add -D <addon name>
      ember g <addon name>
    

    "Unknown blueprint" error message is expected in case the installed addon doesn't want to modify the codebase. Simply ignore the message.

Installation

  • git clone [email protected]:crowdbrew/crowdbrew-frontend.git
  • cd crowdbrew-frontend
  • yarn install
  • bower install

Running / Development

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

Specify what it takes to deploy your app.

Further Reading / Useful Links