Skip to content

Instantly share code, notes, and snippets.

View durrellchamorro's full-sized avatar

Durrell Chamorro durrellchamorro

  • Fleetio
  • 22:56 (UTC -05:00)
View GitHub Profile
@durrellchamorro
durrellchamorro / rails_webpacker_bootstrap_expose_jquery.md
Created November 19, 2018 03:37 — forked from andyyou/rails_webpacker_bootstrap_expose_jquery.md
Rails 5.2 with webpacker, bootstrap, stimulus starter

Rails 5.2 with webpacker, bootstrap, stimulus starter

This gist will collect all issues we solved with Rails 5.2 and Webpacker

Create Project

# Last few parameters(--skip-* part) is only my habbit not actully required
$ rails new <project_name> --webpack=stimulus --database=postgresql --skip-coffee --skip-test
@durrellchamorro
durrellchamorro / vim-heroku.sh
Created September 30, 2018 03:15 — forked from dvdbng/vim-heroku.sh
Run vim in heroku updated 2017
mkdir ~/vim
cd ~/vim
# Staically linked vim version compiled from https://github.com/ericpruitt/static-vim
# Compiled on Jul 20 2017
curl 'https://s3.amazonaws.com/bengoa/vim-static.tar.gz' | tar -xz
export VIMRUNTIME="$HOME/vim/runtime"
export PATH="$HOME/vim:$PATH"
cd -