Skip to content

Instantly share code, notes, and snippets.

View sgentile's full-sized avatar

Steve Gentile sgentile

  • Mile Two
  • Dayton, Ohio
View GitHub Profile
#~/.profile is the place to put stuff that applies to your whole session, such as programs that you want to start when you log in (but not graphical programs,
#they go into a different file), and environment variable definitions.
# syntax to just add multiple entries at the same time. If you want to add one line at a time it's more like export PATH="/usr/local/bin:$PATH"
# path does not need to be exported, but things like ANDROID_HOME do
export GOPATH=$HOME/golang
export STASH_CREDS=sgentile
export ANDROID_HOME=/Users/sgentile/Library/Android/sdk
const webpack = require('webpack');
const path = require('path');
// Webpack extensions
const CleanWebpackPlugin = require('clean-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const validate = require('webpack-validator');
// For production builds, additional steps are necessary.
const webpack = require('webpack');
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const merge = require('webpack-merge');
const webpackconfig = require('./webpack.config.js');
module.exports = (config) => {
config.set({
browsers: ['PhantomJS', 'Chrome'], //run in Chrome
@sgentile
sgentile / gist:126f8ebccd1e09299aab3618f2e2b732
Created February 16, 2018 22:13
django-postgres-docker-docker-compose
version: "2.2"
services:
web:
build: .
ports:
- "8080:8080"
depends_on:
- "db"
db:
image: postgres:9.6-alpine
@sgentile
sgentile / .profile
Created March 12, 2018 14:40
My Profile
#~/.profile is the place to put stuff that applies to your whole session, such as programs that you want to start when you log in (but not graphical programs,
#they go into a different file), and environment variable definitions.
# syntax to just add multiple entries at the same time. If you want to add one line at a time it's more like export PATH="/usr/local/bin:$PATH"
# path does not need to be exported, but things like ANDROID_HOME do
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
# export GOPATH=$HOME/golang