https://github.com/ubuntu/face-detection-web
Single page website for face detection (using face-detection-demo backend) using Polymer
https://github.com/ubuntu/face-detection-web
Last synced: about 1 year ago
JSON representation
Single page website for face detection (using face-detection-demo backend) using Polymer
- Host: GitHub
- URL: https://github.com/ubuntu/face-detection-web
- Owner: ubuntu
- License: mit
- Created: 2016-08-16T07:29:45.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-09T08:16:54.000Z (almost 10 years ago)
- Last Synced: 2025-04-20T15:44:30.213Z (about 1 year ago)
- Language: JavaScript
- Size: 694 KB
- Stars: 7
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# face-detection-web
Single page website for face detection (using face-detection-demo backend) with Polymer
## Required backend
This web page is used to be the frontend part served by face-detection-demo backend (in the same user group repository). It has a `snapcraft.yaml` to embed this project.
## Install the Polymer-CLI
First, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polymer-cli) installed. Then run `polymer serve` to serve your application locally.
## Viewing Your Application
```
$ polymer serve
```
## Building Your Application
```
$ polymer build
```
This will create a `build/` folder with `bundled/` and `unbundled/` sub-folders
containing a bundled (Vulcanized) and unbundled builds, both run through HTML,
CSS, and JS optimizers.
You can serve the built versions by giving `polymer serve` a folder to serve
from:
```
$ polymer serve build/bundled
```