Skip to content
This repository has been archived by the owner on Nov 10, 2022. It is now read-only.

Latest commit

 

History

History
89 lines (62 loc) · 2.27 KB

README.md

File metadata and controls

89 lines (62 loc) · 2.27 KB

QualiExplore Angular Module

Standalone Frontend Angular application of QualiExplore Component in NIMBLE Platform

This project was generated with Angular CLI version 8.1.2.

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.

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.

Contact

Docker

QualiExplore is served through nginx HTTP Server. See Dockerfile for details. Qualiexplore is also available on Docker Hub

Local Development

Build Image:

  npm run build:docker

Run Image:

  npm run start:docker

Local Development Using docker-compose:

version: '3.1'

services:
  qualiexplore:
    image: 'qualiexplore'
    build: '.'
    ports:
      - 3000:80

Deployment

  1. Within docker-compose.yml add:
version: '3.1'

services:
  qualiexplore:
    image: 'shantanoodesai/qualiexplore'
    ports:
      - 3000:80
  1. Run using docker command:
  docker run -p 3000:80 --rm shantanoodesai/qualiexplore

License

Apache2.0 License

  Copyright 2020
  University of Bremen, Faculty of Production Engineering, Badgasteiner Straße 1, 28359 Bremen, Germany.
  In collaboration with BIBA - Bremer Institut für Produktion und Logistik GmbH, Bremen, Germany.
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
      http://www.apache.org/licenses/LICENSE-2.0
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.