Montgomery County requires that all dogs in the county be registered and this will help make that easier!
Visit learnnation.org/dogtags.html.
git clone ...
the repo.cd ...
into the repo.npm install
to install all node dependencies.npm install -g @angular/cli
to install the angular CLI. The-g
option causes it to be installed globally, and this is recommended.ng serve
for a dev server. Navigate to localhost:4200. The app will automatically reload if you change any of the source files.
A lot of the files in this project were automatically generated. The handwritten stuff is mostly inside src/app
. However, the root html file is at src/index.html
, the root javascript (actually typescript) file is at src/main.ts
, and the root CSS (actually SCSS) file is at src/styles.scss
.
git clone ...
the repo.cd ...
into the repo.npm install
to install all node dependencies.npm install -g @angular/cli
to install the angular CLI. The -g option causes it to be installed globally, and this is recommended.ng build --prod
, orng build --prod --base-href baseplace
if the user is going to visit domain.com/baseplace/index.html. The build artifacts will be stored in thedist
directory.- Set up a static file server pointing to the directory
/path/to/dog-registration/dist/dogtags
.
See stackoverflow if you get stuck.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
This project was generated with Angular CLI version 6.0.8. To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.