Skip to content

ilecipi/sopra-fs17-client

Repository files navigation

Welcome to our project of:

                                    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'

We are Ile Cepilov, Erion Sula, Silvo Sposetti, Antonio De la Torre, Sophy Chhong and Lina Witzel

and this is the client side of our version of the game 'Imhotep' which we created as part of the lecture 'Softwarepraktikum' at University Zurich!

Feel free to test it and play the game at: https://sopra-fs17-group11.firebaseapp.com

-------- Information for implementation --------

STOP! First you have to be familiar with this before you start

Read and go through those Tutorials, It will make your life easier!

Prerequisites and Installation

Both the CLI and generated project have dependencies that require Node 6.10.0 together with NPM 3.10.10.

  1. Download Node and install it.
  2. Install Angular-CLI via terminal with the command: npm install -g @angular/cli@latest
  3. Install Git
  4. Clone this template with git clone GIT_TEMPLATE_URL
  5. Open terminal and go to the project folder (client-template)
  6. execute: npm install for installing the dependencies
  7. execute: npm start for starting the application

Run a Development server

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 a Development server with proxy to backend (server-template)

Run ng 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

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive/pipe/service/class/module.

Build

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.

Generating Components, Directives, Pipes and Services

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

DEPLOYMENT TO FIREBASE

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

  1. 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)

  1. go to firebase console website: http://console.firebase.google.com and sign in (forfree)
  2. click new project and create a new project
  3. go to terminal and install firebase cli --> npm install -g firebase-tools
  4. login to firebase with : firebase login
  5. 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)

  1. ng build --prod
  2. firebase deploy