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
server: wangchung | |
php_version: 20.39 |
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
server: nginx | |
php_version: 5.2.13 |
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
web: # defaults to web | |
container: php # defaults to php | |
server: apache # defaults to apache | |
php_version: 5.3.6 # defaults to latest |
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
SimpleConfig.create(:key => 'app_uid_increment', :value => 3000) | |
user = User.where(:username => 'username').first | |
app = App.where(:name => 'app-name').first | |
deploy = app.deploys.create(:state => 'COMPLETE', :commit => '123', :user => user) | |
deploy_event = app.deploy_events.create(:deploy_id => deploy.id) |
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
{ | |
"id":"4e2ca7bf8065016118000062", | |
"state":"incomplete", | |
"status":"paused", | |
"description":"launching new app", | |
"percent_complete":66, | |
"progress":[ | |
{ | |
"description":"one", | |
"state":"complete", |
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
Available Groups: | |
Administration Tools | |
Authoring and Publishing | |
Base | |
Beagle | |
Cluster Storage | |
Clustering | |
DNS Name Server | |
Development Libraries | |
Development Tools |
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
permissions: | |
"^manifest/(.*)$": | |
- all: deny | |
"^workspace/utilities/(.*).xsl$": | |
- all: deny | |
"^workspace/pages/(.*).xsl$": | |
- all: deny | |
"^(.*).sql$" | |
- all: deny | |
"(^|/)\." |
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
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteBase /symphony-cms/ | |
### SECURITY - Protect crucial files | |
RewriteRule ^manifest/(.*)$ - [F] | |
RewriteRule ^workspace/utilities/(.*).xsl$ - [F] | |
RewriteRule ^workspace/pages/(.*).xsl$ - [F] | |
RewriteRule ^(.*).sql$ - [F] |
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
# simple | |
url_rewrites: | |
### URL Correction | |
- "^/(symphony/)?index.php(/.*/?) /$1$2" | |
### SIMPLE ADMIN REWRITE | |
- "^/symphony\/?$ /?mode=administration&$query_string last" |
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
require 'rubygems/remote_fetcher' | |
module Gem::GemcutterUtilities | |
OptionParser.accept Symbol do |value| | |
value.to_sym | |
end | |
## | |
# Add the --key option |