セルフ・サービス・インターフェース - Cloud Portal

License badge Documentation badge Docker badge Support badge



イントロダクション

このプロジェクトは FIWARE の一部です。この FIWARE GE についての詳細はこちらをご覧ください。

  • このプロジェクトのソースコードは GitHub にあります
  • このプロジェクトのドキュメントは、こちら をご覧ください

OpenStack Horizon コンポーネントの JavaScript 実装。これは、OpenStack Horizon をベースにした JavaScript でのみ開発された Web ポータルです。

ビルドとインストール方法

  1. 必要なコンポーネントをインストールします
  2.         sudo apt-get install make g++
            sudo apt-get install python-software-properties
            sudo add-apt-repository ppa:chris-lea/node.js
            sudo apt-get update
            sudo apt-get install nodejs npm git ruby1.9.3
    
            sudo gem install sass -v 3.2.12
        
  3. リポジトリをワークスペースにクローンし、新しいディレクトリ fiware-cloud-portal に移動します
  4.         git clone git://github.com/ging/fiware-cloud-portal.git
    
            cd fiware-cloud-portal
        
  5. ディレクトリ fiware-cloud-portal で、config.js.templateconfig.js にコピーします
  6.         cp config.js.template config.js
        
  7. Cloud Portal () にログインし、アカウントの詳細にアクセスしてください
  8. 新しいアプリケーションを登録して、ローカルホストにバインドします
  9. config.js ファイルを正しい設定で変更して、保存します
  10.     // Mandatory. TCP port to bind the server to
        config.http_port = 80;
    
        config.useIDM = false;
    
        // OAuth configuration. Only set this configuration if useIDM is true.
        config.oauth = {
            account_server: 'https://account.lab.fiware.org',
            client_id: '',
            client_secret: '',
            callbackURL: ''
        };
    
        // Keystone configuration.
        config.keystone = {
            host: 'cloud.lab.fiware.org',
            port: 4730,
            admin_host: 'cloud.lab.fiware.org',
            admin_port: 4731, 
            username: '', 
            password: '',
            tenantId: ''
        };
        
    注 : 別の TCP ポートを設定することはできますが、アプリケーションの設定と config.js ファイルの変更を示す必要があります
  11. npm と grunt を使って依存関係をインストールし、最後にサーバを実行してください
  12.         sudo npm install
    
            ./node_modules/grunt-cli/bin/grunt debug
    
            sudo node server.js
    
        

Docker

この GE の構築を容易にする Docker イメージも提供しています。

  • ここには、Dockerfile とそれを使用する方法を説明するドキュメントがあります
  • Docker Hub では、パブリック・イメージを見つけることができます

APIの概要

Self Service Interfaces GE は、Openstack サービスや他の FIWARE GEs API へのアクセスを容易にするための GUI です。したがって、API 仕様はありません。

高度なドキュメント

License

The MIT License

Copyright (C) 2012 Universidad Politécnica de Madrid.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.