WebUI implementation for GNS3
Go to file
2019-04-10 13:23:54 +02:00
.circleci Fix CCI with --publish always 2019-03-08 09:02:21 +01:00
.vscode Debugging configruation and merge with latest angular 2018-11-27 11:26:23 +01:00
e2e Reenable sentry 2018-07-23 16:37:09 +02:00
scripts Freeze static/web-ui 2019-03-21 10:42:48 +01:00
src Merge with master 2019-04-10 13:23:54 +02:00
.appveyor.yml Electron-builder: publish always 2019-03-07 16:02:59 +01:00
.editorconfig Debugging configruation and merge with latest angular 2018-11-27 11:26:23 +01:00
.gitignore Install SolarPuTTY when available 2019-02-04 11:32:01 +01:00
.prettierrc Implement prettier in package.json, Fixes: #220 2018-12-10 13:44:49 +01:00
.sentryclirc Added .sentryclirc 2019-03-27 10:49:33 +01:00
.travis.yml Upload SourceMaps only when on tag 2019-03-27 11:44:17 +01:00
.yarnclean Remove .md from yarnclean 2018-11-06 10:31:09 +01:00
angular.json Create SourceMaps and upload to Sentry via CLI 2019-03-27 10:50:03 +01:00
console-executor.js Basic OS Console executor 2019-03-05 14:26:09 +01:00
Dockerfile Move from npm to yarn 2018-02-22 12:05:13 +01:00
electron-builder.yml Merge with master 2019-04-10 13:23:54 +02:00
installed-software.js Install SolarPuTTY when available 2019-02-04 11:32:01 +01:00
karma.conf.js Basic migration to RxJS 6, Ref: #154 2018-07-06 11:31:44 +02:00
LICENSE Initial commit 2017-09-25 11:27:22 +02:00
local-server.js Dynamips delivery with WebUI, Fixes: #326 2019-03-05 12:40:19 +01:00
main.js Support of stderr CRITICAL issues forwarded to app 2019-02-20 11:32:54 +01:00
package.json Development on v2019.1.0-alpha.4dev 2019-03-27 12:05:52 +01:00
protractor.conf.js Draft of WebUI 2017-09-25 13:07:52 +02:00
README.md Updating signing certificate in README 2019-01-08 14:11:09 +01:00
renderer.js Adding templates of IOS routers 2019-02-05 01:26:35 -08:00
sentry.js Fix white screen on electron app, Ref: #244 2019-01-04 12:57:58 +01:00
set-variables-in-env.js Update prod env only when variables are defined 2019-01-29 09:54:26 +01:00
tsconfig.json Revert "Try to build production with sourcemaps" 2019-03-27 08:50:09 +01:00
tslint.json Implement prettier in package.json, Fixes: #220 2018-12-10 13:44:49 +01:00
yarn.lock Create SourceMaps and upload to Sentry via CLI 2019-03-27 10:50:03 +01:00

gns3-web-ui

Greenkeeper badge Travis CI AppVeyor CircleCI codecov

Test WebUI implementation for GNS3.

This is not production ready version. It has been made to evaluate possibility of creation Web User Interface for GNS3 application.

Demo

Please use GNS3 WebUI bundled in gns3server and gns3.

Development

Branches policy

On branch master you can find the latest codebase including under development features. If you are looking for stable version with features promoted to be included in the current/next release please switch to stable branch.

Installation

We're using yarn for packages installation:

yarn install

Run GNS3 server

Visit gns3-server for guide how to run GNS3 server.

Run WebUI

yarn ng serve

Application is accessible on http://127.0.0.1:4200/. The app will automatically reload if you change any of the source files.

Docker container

For development you can also run the GNS3 Web UI in a container

bash scripts/docker_dev_webui.sh

How to upgrade package.json?

yarn upgrade --latest

gns3server bundled in WebUI - electron based

In special cases it's possible to build gns3server for GNS3 WebUI. This version is included in electronjs dist application.

python3 scripts/build.py build -b dist

Code scaffolding

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

Build

Run yarn ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build.

Running unit tests

Run yarn ng test to execute the unit tests via Karma.

Releasing

Bumping releases

We're using version-bump-prompt for increasing version.

Install version-bump-prompt via:

    npm install -g version-bump-prompt

If you would like to bump prepatch just type:

    bump --prepatch --tag --push

Distribute release

We have got configured CircleCI, TravisCI and AppVeyor for distributing application for particular platform. In order to release you need to tag&push your changes.

Using bump:

    bump --patch --tag --push

Or manually:

    git tag v0.0.1
    git push origin v0.0.1

When artifacts are made you can see draft release here: gns3-web-ui releases which is waiting to be published. After release please change current version in package.json to X.X.X-beta.0'. Otherwise artifacts will be overwritten during the next commit.

You may use bump to achieve that:

    bump --prepatch

Staging release

In case you would like to create a new staging release. Please create draft release on github, like 0.0.1-dev1. After successful build you can find artifacts there.

Updating signing certificate for Windows

Please follow this guide: code-signing, use certmgr.msc exporting tool to limit the size of certificate.

Further help

If you want to contribute to GNS3 Web UI feel free to reach us at developers@gns3.net.