Skip to content

Instantly share code, notes, and snippets.

View dphurley's full-sized avatar

Danny Hurley dphurley

View GitHub Profile
# =================
# Bash Prompt
# =================
# Show more information regarding git status in prompt
GIT_DIFF_IN_PROMPT=true
# --------------------
# Colors for the prompt
# --------------------
@dphurley
dphurley / ! Angular on Rails with Webpack
Last active June 13, 2017 17:52
Angular on Rails / Webpack
npm install --save webpack
npm install --save glob
npm install --save babel-core babel-loader babel-preset-env babel-preset-es2015
npm install --save html-loader
npm install --save angular
@dphurley
dphurley / ! .gitignore
Last active May 12, 2024 10:16
! .gitignore for Express app
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
{
"ignore": [
"./public/*/*.js",
"./client/*/*.js"
]
}
@dphurley
dphurley / ! Webpack and Babel set-up
Last active June 8, 2017 19:55
WDI Webpack / Nodemon Configuration
npm install --save webpack
npm install --save glob
npm install --save babel-core babel-loader babel-preset-env babel-preset-es2015
npm install --save html-loader