https://github.com/jakehartnell/smart-pot
A self watering pot that you can hook up sensors and lights to!
https://github.com/jakehartnell/smart-pot
Last synced: 5 months ago
JSON representation
A self watering pot that you can hook up sensors and lights to!
- Host: GitHub
- URL: https://github.com/jakehartnell/smart-pot
- Owner: JakeHartnell
- Created: 2016-09-01T21:56:16.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-15T18:40:11.000Z (over 9 years ago)
- Last Synced: 2025-02-13T14:46:46.093Z (over 1 year ago)
- Language: HTML
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# \
A self watering pot with lights and sensors too!
## 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
```
## Running Tests
```
$ polymer test
```
Your application is already set up to be tested via [web-component-tester](https://github.com/Polymer/web-component-tester). Run `polymer test` to run your application's test suite locally.