iurianu / au-ember

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

au-crud-app

This README outlines the details of collaborating on this Ember application.

Prerequisites

Installation

  • git clone <repository-url> this repository
  • cd au-crud-app
  • npm install

Install, and configure appuniversum

  1. ember install ember-cli-sass - installs node-sass in the project (required by AU)
  2. ember install ember-data-table - an add-on used together with appuniversum
  3. ember install @appuniversum/ember-appuniversum
  4. ember install ember-cli-autoprefixer - a dependency required by AU
  5. Change style.css to style.scss, and configure the folder structure for SCSS partials
  6. Add the following lines to your ember-cli-build.js file
module.exports = function (defaults) {
  let app = new EmberApp(defaults, {
+   autoprefixer: {
+     cascade: false,
+   },
+   sassOptions: {
+     sourceMap: true,
+     extension: 'scss',
+     includePaths: ['node_modules/@appuniversum/appuniversum'],
+   },
  });

  return app.toTree()

About


Languages

Language:JavaScript 55.6%Language:Handlebars 29.5%Language:SCSS 9.6%Language:HTML 5.3%