Git Product home page Git Product logo

grzegorz-czajkowski / watt Goto Github PK

View Code? Open in Web Editor NEW

This project forked from samsung/watt

0.0 1.0 0.0 361.6 MB

A Web Assembly Translation Toolkit (WATT), a new Web Assembly (WASM) application authoring tool that allows developers to create a WASM based library easily and use it to create WASM based applications.

License: Apache License 2.0

Dockerfile 0.03% JavaScript 34.12% Makefile 0.50% Shell 0.03% Python 0.48% HTML 27.35% CSS 32.90% RAML 1.99% Batchfile 0.01% C++ 2.49% GLSL 0.01% C 0.11%

watt's Introduction

WATT (WebAssembly Translation Toolkit)

License Build Status

WATT is server-based WebAssembly IDE.

If you want to contribute code, please check the contribution guidelines.

Prerequisites

Optional dependencies

  1. Tizen SDK for building .wgt packages
    • Install Tizen SDK
    • Install Tizen SDK Native CLI development packages
      • For IDE Tizen SDK installer use Tizen Package Manager GUI and install Native CLI from Tizen SDK tools
      • For CLI Tizen SDK installer use package-manager-cli.bin in TIZEN_SDK_PATH/package-manager
      ./package-manager-cli.bin install NativeCLI
    • Add tizen CLI-tool to the system PATH in the terminal where you run WATT
    export PATH=$PATH:TIZEN_SDK_PATH/tools/ide/bin/

Quick Start

  • Getting the sources:
git clone https://github.com/Samsung/WATT.git
cd WATT
  • Start the server:

WATT will run some internal executable files,

for this, WATT needs set paths of executable files on System Environment Variable(PATH).

If you don't start the server with launch, WATT could not provide full functionality.

./launch

Tests

To run the test suite, first install the dependencies, then run npm test:

npm install
npm test
  • Connect to the web server, the service is provided with port number 3000:
On browser, http://localhost:3000/

Developing Design Editor in WATT

  • Design Editor is located in libs/tau-wysiwig
  • After making DE changes launch WATT with bp option
./launch -bp
  • After making changes on already running WATT:
# in WATT directory
cd libs/tau-wysiwig
npm install
npm run-script build-watt
  • Always after making any DE changes in WATT console:
b

Running WATT in docker container

docker run hello-world
ERROR: Couldn't connect to Docker daemon at http+docker://localunixsocket - is it running?
  • If user can not be added due to the following error, manually add your user to docker group, for example, using sudo vigr tool.
usermod: user 'foo' does not exist
  • WATT along with mongodb images can be built and run by:
./docker-run.sh
  • Ensure 3000 port to be free. You should see logs on terminal:
watt_container_1   | Listening on port 3000
watt_container_1   | TAUComm started
mongo_container_1  | 2019-03-11T07:18:23.178+0000 I NETWORK  [thread1] connection accepted from 172.19.0.3:36916 #1 (1 connection now open)
  • Open localhost:3000 in Browser.

Inspecting docker images.

WATT and mongodb images are composed together by docker-compose.yml. However, if you want to execute any command on particular image type:

docker run -it 5f142ecd12f5 bash

ImageId can be found from:

docker images

Building WATT in docker container

If you already did compose, for example, by invoking ./docker-run.sh you can attach to running container:

docker container attach 12cf98736487

And type 'b', container id comes from

docker container ls

Inspecting running contatiner

It's possible to execute any command on running container:

docker container exec -i 12cf98736487 bash

Pushing docker images to AWS repositories

  • Make sure your .git folder is not huge since its size significantly increases docker image.
./docker-run.sh
  • List docker images:
docker images
  • Sample output:
watt_watt_container                                                               latest              fa2fc69d89a1        5 days ago          3.36GB
mongo                                                                             3.4.19              056cb4b05c15        5 weeks ago         376MB

Setup WATT on AWS

ecs-cli up --force --keypair id_rsa --capability-iam --size 1 --instance-type t2.large --vpc vpc-0d05d256d9261ccb5 --subnets subnet-0b31dfed2f9dddb0a --security-group sg-09d2b747ca8b77f1a --cluster-config watt-cluster-config --region us-east-2
  • It is recommended to create your own Virtual Private Cloud (vpc), Subnet and Security Group unless you are just replacing current image.
  • Deploy the Compose File to a Cluster, for example,
ecs-cli compose --file docker-compose-aws.yml --verbose up --create-log-groups --cluster-config watt-cluster-config --region us-east-2
  • See watt-awslogs-group at CloudWatch, you can also download them by
aws logs get-log-events --log-group-name watt-awslogs-group --log-stream-name watt/watt_container/0f16fa2e-6db9-4cff-8b13-821b3c72f446 --output text --region us-east-2
  • If you see 'Invalid command () was entered' please follow further steps
  • Due to no support for interactive mode in compose there is a need to manually edit task definition
  • Go to Task Definitions and chose your task.
  • Click "Create new revision"
  • In 'JSON' tab, add the following section to watt container:
"interactive": true,
"pseudoTerminal": true,
  • Run task (Actions -> Run Task)
  • Verify if WATT starts properly by inspecting the logs.

License

Refer WATT License

watt's People

Contributors

hunseopjeong avatar kwanghyuk-kim avatar lmslachciak avatar grzegorz-czajkowski avatar ws29jung avatar jw00 avatar hyundukkim avatar andy-cho avatar somang-park avatar sy302-park avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.