Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: webos backend is created #51

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions backends/webos/app-template/appinfo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"id": "com.domain.app",
"version": "0.0.1",
"vendor": "My Company",
"type": "web",
"main": "index.html",
"title": "new app",
"icon": "icon.png",
"largeIcon": "largeIcon.png"
}
Binary file added backends/webos/app-template/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions backends/webos/app-template/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>

<head>
<!-- The src will be replaced by the launcher before the app is built. -->
<script>location.href = "DESTINATION"</script>
</head>

<body>
</body>

</html>
Binary file added backends/webos/app-template/largeIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
286 changes: 286 additions & 0 deletions backends/webos/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions backends/webos/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "webos-webdriver-server",
"description": "A webOS WebDriver server that pushes URLs to webOS devices, built on generic-webdriver-server.",
"version": "1.0.0",
"homepage": "https://github.com/shaka-project/generic-webdriver-server",
"author": "Google",
"license": "Apache-2.0",
"maintainers": [
{
"name": "Joey Parrish",
"email": "[email protected]"
}
],
"keywords": [
"karma",
"selenium",
"webos",
"webdriver"
],
"main": "webos-webdriver-server.js",
"scripts": {
"lint": "eslint --ignore-path ../../.gitignore --max-warnings 0 .",
"checkClean": "test -z \"$(git status --short .)\" || (echo \"Git not clean!\"; git status .; exit 1)",
"test": "npm run lint",
"prepack": "npm run lint && npm run checkClean"
},
"bin": {
"webos-webdriver-cli": "./webos-webdriver-cli.js",
"webos-webdriver-server": "./webos-webdriver-server.js"
},
"dependencies": {
"generic-webdriver-server": "^1.1.3",
"tmp-promise": "^3.0.2",
"wol": "^1.0.7"
},
"workspaces": [
"../../base"
]
}
Loading