Skip to content

Instantly share code, notes, and snippets.

Your Namehere | WordPress Developer
<img src="https://secure.gravatar.com/avatar/putyourhashhere" />
@dfeuster
dfeuster / README.md
Created May 18, 2017 18:57 — forked from zenorocha/README.md
A template for Github READMEs (Markdown) + Sublime Snippet

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage

@dfeuster
dfeuster / polymer-project-firebase.json
Created May 14, 2017 20:48
polymer-project-firebase.json
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "build/default",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
@dfeuster
dfeuster / polymer-project-polymer.json
Created May 14, 2017 20:47
polymer-project-polymer.json
{
"entrypoint": "index.html",
"shell": "src/my-app.html",
"fragments": [
"src/my-view1.html",
"src/my-view2.html",
"src/my-view3.html",
"src/my-new-view.html",
"src/my-view404.html"
],
@dfeuster
dfeuster / polymer-project-database.rules.json
Created May 14, 2017 20:40
polymer-project-database.rules.json
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
@dfeuster
dfeuster / polymer-project-gulpfile.js
Created May 14, 2017 20:38
polymer-project-gulpfile.js
/**
* @license
* Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/