ad88888ba ,ad8888ba, 88888888ba 88888888ba db 88888888888 ad88888ba 88 888888888888
d8" "8b d8"' `"8b 88 "8b 88 "8b d88b 88 d8" "8b ,d88 ,8P'
Y8, d8' `8b 88 ,8P 88 ,8P d8'`8b 88 Y8, 888888 d8"
`Y8aaaaa, 88 88 88aaaaaa8P' 88aaaaaa8P' d8' `8b 88aaaaa `Y8aaaaa, 88 ,8P'
`"""""8b, 88 88 88""""""' 88""""88' d8YaaaaY8b 88""""" `"""""8b, 88 d8"
`8b Y8, ,8P 88 88 `8b d8""""""""8b 88 `8b 88 ,8P'
Y8a a8P Y8a. .a8P 88 88 `8b d8' `8b 88 Y8a a8P 88 d8"
"Y88888P" `"Y8888Y"' 88 88 `8b d8' `8b 88 "Y88888P" 88 8P'
Read and go through those Tutorials, It will make your life easier!
- Read the Angular 2 Doc
- Do this Angular 2 Getting Started Tutorial
- Get an Understanding of CSS and HTML!
Both the CLI and generated project have dependencies that require Node 6.10.0 together with NPM 3.10.10.
- Download Node and install it.
- Install
Angular-CLI
via terminal with the command:npm install -g @angular/cli@latest
- Install Git
- Clone this template with
git clone GIT_TEMPLATE_URL
- Open terminal and go to the project folder (client-template)
- execute:
npm install
for installing the dependencies - execute:
npm start
for starting the application
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run npm start
for a dev server + proxy. Navigate to ng serve --proxy-config proxy.conf.json
.
The app will automatically reload if you change any of the source files.
The Server must be running on your localhost --> gradle bootRun
Run ng generate component component-name
to generate a new component. You can also use ng generate directive/pipe/service/class/module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory. Use the -prod
flag for a production build.
You can use the ng generate
(or just ng g
) command to generate Angular components:
ng generate component my-new-component
ng g component my-new-component # using the alias
# components support relative path generation
# if in the directory src/app/feature/ and you run
ng g component new-cmp
# your component will be generated in src/app/feature/new-cmp
# but if you were to run
ng g component ../newer-cmp
# your component will be generated in src/app/newer-cmp
You can find all possible blueprints in the table below:
Scaffold | Usage |
---|---|
Component | ng g component my-new-component |
Directive | ng g directive my-new-directive |
Pipe | ng g pipe my-new-pipe |
Service | ng g service my-new-service |
Class | ng g class my-new-class |
Interface | ng g interface my-new-interface |
Enum | ng g enum my-new-enum |
Module | ng g module my-module |
Before you go throught the steps, make sure you refer your requests to your heroku server! (fill in your heroku-server url in apiUrl variable in e.g. user.service) ##BUILD
- build project for production -->
ng build --prod
(init a build prod which is optimized for prod (fast as possible) RESULT--> DIST folder with all compiled files)
##CONFIG (only the first time)
- go to firebase console website:
http://console.firebase.google.com
and sign in (forfree) - click new project and create a new project
- go to terminal and install firebase cli -->
npm install -g firebase-tools
- login to firebase with :
firebase login
- Init the project(you have to be inside the project):
firebase init
- 1 Question: select HOSTING
- 2 Question: select your previously created project from step 2
- 3 Question: (What file should be used for DB Rules): return (we don't need that)
- 4 Question: (What do you want to use as your public directory?): type "dist"
- 5 Question: (Configure as a single-page app): YES (because angular 2 app is SinglePageApplication
- 6 Question: (File dist/index.html already exists. Overwrite?): NO
FINISH JUHU --> deploy with now with firebase deploy
6. open provided link
##DEPLOY (up to now)
ng build --prod
firebase deploy