Skip to content

Instantly share code, notes, and snippets.

View mcblum's full-sized avatar

Matt Blum mcblum

View GitHub Profile
@mcblum
mcblum / gist:ffdc8e37a9901f82970136ec9408cb5b
Created September 26, 2016 17:35
.htaccess config for Angular
#Angular rewrites
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
# If the requested pattern is file and file doesn't exist, send 404.
# This fixes the issue with Angular being included more than once
# when you get the path of a component template wrong.
RewriteCond %{REQUEST_URI} ^(\/[a-z_\-\s0-9\.]+)+\.[a-zA-Z]{2,4}$
#!/usr/bin/env bash
usage() { echo "Usage: $0 [-b optional <jit|aot> ]" 1>&2; exit 1; }
# parse our environment
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) machine=Linux;;
Darwin*) machine=Mac;;
CYGWIN*) machine=Cygwin;;
MINGW*) machine=MinGw;;