webgme / sysml

Systems Engineering Modeling Language (SysML) domain
MIT License
22 stars 20 forks source link

webgme-sysml

SysML implementation using WebGME as a library

Installation

Clone the repository

Install all dependency modules

npm install

Start the Mongo database manager

The MongoDB database manager must be running before starting WebGME.

mongod --rest

Start WebGME

The following starts WebGME with the default configuration.

node app.js 

alternatively...

npm start

Go to (http://127.0.0.1:9091) to access the user interface.

The following starts WebGME with a custom configuration. Make sure you unset the environment variable afterwards.

Windows

set NODE_ENV=app && node app.js 

alternatively...

set NODE_ENV=app && npm run app 

Linux

env NODE_ENV=app && node app.js 

alternatively...

env NODE_ENV=app && npm run app 

(optional) Run the test example for a plugin.

npm run test

Environment Special Notes

Ubuntu

The node.js package dependencies can be installed with apt-get.

sudo apt-get install npm mongodb

The default command for node.js is not 'node' unless you install the legacy package.

sudo apt-get install nodejs-legacy

Current Features

WebGME-SysML language definition

WebGME-SysML language and models are provided with domain-specific visualizations (decorator)

SysML modeling with WebGME-SysML language (under OMG specification v1.3+)

Diagrams supported:

SysML diagrams exportable to Eclipse Papyrus:

SysML diagrams importable from Eclipse Papyrus:

SysML diagram elements exportable to SysML specs (see Eclipse Papyrus uml file in project for schema)

Limitations/TODOs