{"id":20198562,"url":"https://github.com/eclipsesource/tabris-js-hello-world","last_synced_at":"2025-11-28T12:06:38.796Z","repository":{"id":14381839,"uuid":"76455177","full_name":"eclipsesource/tabris-js-hello-world","owner":"eclipsesource","description":"Tabris.js Example App","archived":false,"fork":false,"pushed_at":"2025-11-18T11:40:46.000Z","size":2258,"stargazers_count":2,"open_issues_count":6,"forks_count":11,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-11-18T15:27:50.143Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eclipsesource.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-12-14T11:51:50.000Z","updated_at":"2025-09-09T10:59:25.000Z","dependencies_parsed_at":"2025-04-28T08:39:04.470Z","dependency_job_id":null,"html_url":"https://github.com/eclipsesource/tabris-js-hello-world","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/eclipsesource/tabris-js-hello-world","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipsesource%2Ftabris-js-hello-world","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipsesource%2Ftabris-js-hello-world/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipsesource%2Ftabris-js-hello-world/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipsesource%2Ftabris-js-hello-world/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipsesource","download_url":"https://codeload.github.com/eclipsesource/tabris-js-hello-world/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipsesource%2Ftabris-js-hello-world/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27307182,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-28T02:00:06.623Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-14T04:32:14.841Z","updated_at":"2025-11-28T12:06:38.782Z","avatar_url":"https://github.com/eclipsesource.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/eclipsesource/tabris-js-hello-world.svg?branch=experimental)](https://travis-ci.org/eclipsesource/tabris-js-hello-world)\n\n# Hello World example for Tabris.js\n\nThis is a simple Hello World app written in [Tabris.js](https:tabrisjs.com).\nIts main purpose is to illustrate the different ways to build a Tabris.js app.\n\n## Tabris.js Build Service\n\nThe easist way to build a Tabris.js app is to place it in a public GitHub repository and then use the build service available on https://tabrisjs.com\n\n## Android Build on Travis\n\nThis project is built on [Travis CI](https://travis-ci.org/eclipsesource/tabris-js-hello-world/builds). The [.travis.yml](.travis.yml) defines what happens during that build. You can use the file as a template to build your own Tabris.js apps on Travis. Just place a copy of the `.travis.yml` in the root folder of your own Tabris.js project.\n\n## Android Build with Docker\n\nThis project contains a [Dockerfile](Dockerfile) that describes an Android build environment. If you have Docker installed you can create an Android `.apk` file for this Hello World app without installing an Android SDK. This makes it very convenient to perform builds on your development machine or in a CI system. Just follow these two steps:\n\n1. create the Docker image\n1. start a build (using that image)\n\n### Create Docker Image\n\nCreate the `tabris-js-build-android` Docker image:\n\n```shell\ndocker build . --tag tabris-js-build-android:latest\n```\n\n### Build in Docker Container\n\nBuild the Hello World app in a Docker container created from the `tabris-js-build-android` Docker image:\n\n```shell\ncd tabris-js-hello-world\ndocker run --rm -v $(pwd):/workspace -e BUILD_NUMBER=4 -e TABRIS_BUILD_KEY=\u003cmy-build-key\u003e tabris-js-build-android tabris build android\n```\n\nThe `TABRIS_BUILD_KEY` holds your build key available from https://tabrisjs.com/settings/account.\n\n### Interactive Build in Docker Container\n\nRun an interactive `tabris-js-build-android` container with mounted `workspace`:\n\n```shell\ncd tabris-js-hello-world\ndocker run -it --rm -v $(pwd):/workspace tabris-js-build-android /bin/bash\n\n```\n\nWithin the container prepare and build `tabris-js-hello-world` app with:\n\n```shell\n$ npm install\n$ BUILD_NUMBER=4 tabris build android\n...\nBUILD SUCCESSFUL\n\nTotal time: 52.348 secs\nBuilt the following apk(s):\n    /workspace/build/cordova/platforms/android/build/outputs/apk/android-debug.apk\n```\n\n## Build with custom code signing key\n\nIf you want to sign your app with the same key in each build (e.g. when using Google Maps) you can use `--cordova-build-config`.\n(This parameter has been itroduced to Tabris CLI with version `0.6.0`)\n\n```shell\ntabris build android --debug --cordova-build-config=cordovaBuildConfig.json\n```\n\nThe following `cordovaBuildConfig.json` contains the signing details for a debug build:\n\n```json\n{\n  \"android\": {\n    \"debug\": {\n      \"keystore\": \"../signing/debug.keystore\",\n      \"storePassword\": \"android\",\n      \"alias\": \"androiddebugkey\",\n      \"password\" : \"android\"\n    }\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipsesource%2Ftabris-js-hello-world","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipsesource%2Ftabris-js-hello-world","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipsesource%2Ftabris-js-hello-world/lists"}