Skip to content

Instantly share code, notes, and snippets.

@luiswolff
Last active March 24, 2022 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luiswolff/227770b21f287aba156e8b8c70391849 to your computer and use it in GitHub Desktop.
Save luiswolff/227770b21f287aba156e8b8c70391849 to your computer and use it in GitHub Desktop.
@echo off
rem install angular cli if not already done
npm install -g @angular/cli
rem create workspace with routing module and not interaction
ng new webapp --routing --defaults
rem enter workspace
cd webapp
rem install angular material with not interaction
ng add @angular/material --defaults
rem Angular material only has a datepicker component, which doesn't handle date times
rem If you need to handle date times install the angular material datetime picker
npm install --save @angular-material-components/datetime-picker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment