Last active
August 29, 2015 14:06
-
-
Save jerelmiller/b6a28acc0b69925db7cc to your computer and use it in GitHub Desktop.
Zeus boot config
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
\._* | |
\.DS_Store | |
*\.sublime* | |
*i18n* | |
*.mov | |
*.swp | |
bin/ | |
tmp/ | |
*\.tmproj | |
*.pt | |
*/log/*.log | |
*/tmp/* | |
*/tmp/**/* | |
*/db/*.sqlite3 | |
*/.sass-cache | |
htdocs-rails/solr | |
software/android/Collect/gen/com/qualvu/collect/R.java | |
solr/data/development/index/* | |
*/vendor/cache/* | |
sftp-config.json | |
flash/clients/UploadClient.swf | |
includes/configuration.inc.php | |
.db | |
.metadata | |
nohup.out | |
.sql | |
.idea/ | |
.tags | |
.tags_sorted_by_file | |
htdocs-rails/coverage | |
sftp-config-alt.json | |
custom_plan.rb | |
zeus.json |
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
require 'zeus/rails' | |
class CustomPlan < Zeus::Rails | |
# def my_custom_command | |
# # see https://github.com/burke/zeus/blob/master/docs/ruby/modifying.md | |
# end | |
end | |
Zeus.plan = CustomPlan.new |
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
# cd ~/working/master/htdocs-rails | |
zeus init |
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
{ | |
"command": "ruby -rubygems -r./custom_plan -eZeus.go", | |
"plan": { | |
"boot": { | |
"default_bundle": { | |
"development_environment": { | |
"prerake": {"rake": []}, | |
"console": ["c"], | |
"generate": ["g"] | |
}, | |
"test_environment": { | |
"test_helper": {"test": ["rspec"]} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Make sure to run
zeus init