Angular starter by yitimo. Bases on project created by angular-cli.
- Use yarn for package managing.
- Use SCSS for styling.
- Use material UIs.
- Add i18n ability.
- Remove test related code.
As this is a repo just based on angular-cli created, you can just build it manually. Just see as the following steps.
- install yarn
- install @angular/cli globally by
yarn global add @angular/cli
- config angular-cli to use yarn defaultly by
ng config -g cli.packageManager yarn
- ng new yourAppName --style=scss
- delete test related files if you don't need them like me
- move global config files to where you want
- add material by
yarn add @angular/material @angular/cdk
and then import the css file - add shared module to put material modules or others common modules in
- add core module to put global services/modules
- add translate module and config it
- add app routes and sub routes
- start writing your fantastic app