start new:
tmux
start new with session name:
tmux new -s myname
# config/application.rb | |
# ... | |
module AppName | |
# ... | |
config.autoload_paths << Rails.root.join("validators") | |
# ... | |
end |
# config/initializers/algolia.rb | |
AlgoliaSearch.configuration = { | |
application_id: ENV["ALGOLIA_APPLICATION_ID"], | |
api_key: ENV["ALGOLIA_ADMIN_API_KEY"] | |
} |
# db/migrate/20170305194935_add_kustomer_id_to_users.rb | |
class AddKustomerIdToUsers < ActiveRecord::Migration | |
def change | |
add_column :users, :kustomer_id, :string | |
end | |
end |
/* Add this AT THE END of the CSS defined on your 'Widget' page */ | |
#helpman-button { | |
display: none; | |
} | |
#helpman-iframe-container { | |
right: 400px; | |
height: calc(100% - 20px - 75px - 20px) !important; | |
max-height: 590px !important; |
{ | |
"color_scheme": "Packages/User/SublimeLinter/base16-ocean.dark (SL).tmTheme", | |
"default_line_ending": "unix", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 15, | |
"highlight_line": true, | |
"index_exclude_patterns": ["*.log", "tmp/**", "bower_components/**", "node_modules/**"], | |
"ignored_packages": | |
[ |
# app/javascript/packs/application.coffee | |
import 'selectize/dist/css/selectize.default' | |
import 'ladda/dist/ladda-themeless.min' | |
import 'jquery' | |
import 'foundation-sites' | |
import * as Ladda from 'ladda' | |
import '../src/js/init' | |
import '../src/js/app.draggable_images' |