This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"agent": { | |
"metrics_collection_interval": 3600, | |
"region": "eu-west-3", | |
"run_as_user": "root" | |
}, | |
"logs": { | |
"logs_collected": { | |
"files": { | |
"collect_list": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rails s (start server) | |
rails console | |
rake about (app desc) | |
rake db:schema:dump (connecto db & export schema) | |
rake db:migrate:status | |
rake db:migrate (apply migrations to db) | |
rake db:migrate VERSION=0 (rollback) | |
rake db:migrate:(up/down/redo) VERSION=<version> | |
rake db:seed (populate db with test data from seeds.rb) | |
rake db:rollback (rollback the migration) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"color_scheme": "Packages/Kestrel/Kestrel.tmTheme", | |
"font_size": 14.0, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"soda_folder_icons": true, | |
"theme": "Soda Dark.sublime-theme" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ANDROID_HOME=~/Library/Android/sdk | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi | |
# if [ -f ~/.git-completion.bash ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is Git's per-user configuration file. | |
[user] | |
name = ******** | |
email = ******** | |
# Please adapt and uncomment the following lines: | |
# name = ******** | |
# email = ******** | |
[user] | |
[filter "lfs"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GIT | |
————————————————————————————————— | |
export PS1='inge$ ' (change command prompt) | |
Git auto-completion | |
----------------------------- | |
curl -OL https://github.com/git/git/raw/master/contrib/completion/git-completion.bash | |
mv ~/git-completion.bash ~/.git-completion.bash | |
nano .bash_profile |