This file contains 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
Pre reqs: | |
I installed these using homebrew | |
* nodejs | |
* yarn | |
Create an application directory manually | |
$ mkdir app_name |
This file contains 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
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
This file contains 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
CKEDITOR.lang.load('en', 'en', function() { | |
CKEDITOR.lang['en']['numberedlist'] = 'Numbers'; | |
CKEDITOR.lang['en']['bulletedlist'] = 'Bullets'; | |
CKEDITOR.replace('project_description', { | |
toolbar: [['Bold', 'Italic', '-', 'NumberedList', 'BulletedList']], | |
toolbarCanCollapse: false, | |
resize_enabled: false, | |
customConfig: '', | |
removePlugins: 'elementspath' | |
}); |