LoginSignup
1
0

More than 1 year has passed since last update.

OpenMBEE VE構築

Last updated at Posted at 2018-07-19

公式

環境

CentOS7

node.js環境を構築

作業用フォルダ作成

mkdir /OpenMBEE

VEをclone

cd /OpenMBEE
git clone https://github.com/Open-MBEE/ve.git

angular-mms-grunt-servers.json作成

cd /OpenMBEE/ve
vi angular-mms-grunt-servers.json

以下を書き込む

{
  "localhost": "localhost"
}

ライブラリのインストール

npm install -g grunt-cli
npm update && npm install
node ./node_modules/node-sass/scripts/install.js
npm rebuild node-sass

VE起動

grunt server:localhost

問題点

UserNameとPasswordを入力する欄が表示されない場合がある

/mms-ts/tsperspectives/TSWebView.css へのアクセスがタイムアウトにならないため。
上記のファイルはVEに含まれていない。
取得がタイムアウトしない場合は処理が止まってしまう。

Gruntfileを開く

vi Gruntfile.js

内容を一部変更する。

host: 'mms-ts-uat.jpl.nasa.gov',//'localhost',//'100.64.243.161',
下記に変更
host: 'localhost',
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0