Updated for Angular-Material v0.10
A starter app with sidenav, icons, tabs, floating action button, and a list of items.
Forked from Angular Material Basic App.
Forked from Marcy Sutton's Pen Angular Material Basic App.
| <?php | |
| header('Access-Control-Allow-Origin: *'); | |
| header("Access-Control-Allow-Credentials: true"); | |
| header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS'); | |
| header('Access-Control-Max-Age: 1000'); | |
| header('Access-Control-Allow-Headers: Origin, Content-Type, X-Auth-Token , Authorization'); |
| #### http://www.site.tld | |
| <VirtualHost *:80> | |
| ServerName site.tld | |
| ServerAlias www.site.tld | |
| DocumentRoot /var/www/site.tld/public | |
| <Directory /var/www/site.tld> | |
| Options Indexes FollowSymLinks MultiViews |
| .ace_gutter { | |
| } | |
| .ace_print-margin { | |
| } | |
| .ace_support{ |
| 'use strict' | |
| // Template version: 1.2.5 | |
| // see http://vuejs-templates.github.io/webpack for documentation. | |
| const path = require('path') | |
| module.exports = { | |
| dev: { | |
| // Paths |
| #!/bin/sh | |
| dirbase="/var/www/" | |
| # cd $dirbase | |
| read -p "Current Directory as base? (y/N) " isCurrDir | |
| if [ "$isCurrDir" = "Y" ] || [ "$isCurrDir" = "y" ]; then | |
| dirpath=$(pwd) |
| // ################################################## | |
| // Tutorial available at https://youtu.be/jzYvZkP_vUs | |
| // ################################################## | |
| // clock start time HH:MM:SS | |
| var clockStartAt = "06:00:10"; | |
| //Count Up/ Down rate | |
| var rate = -1; |
Updated for Angular-Material v0.10
A starter app with sidenav, icons, tabs, floating action button, and a list of items.
Forked from Angular Material Basic App.
Forked from Marcy Sutton's Pen Angular Material Basic App.