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
Changes README environment.json root/ | |
META.yml app.psgi@ inc/ script/ | |
Makefile catalyst_default.conf lib/ static@ | |
Makefile.PL dotcloud.yml myapp01_psql.sql t/ |
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
dotcloud info catalyst.data | |
cluster: wolverine | |
config: | |
postgresql_password: ********** | |
created_at: 1313444468.2643919 | |
ports: | |
- name: ssh | |
url: ... | |
- name: sql | |
url: ... |
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
./script/catalyst_default_create.pl model DB DBIC::Schema Catalyst::Default::Schema create=static 'dbi:Pg:dbname=default-catalyst' '**********' '***********' '{ AutoCommit => 1 }' |
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
Deployment finished. Your application is available at the following URLs | |
www: http://9f385357.dotcloud.com/ |
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
2011-08-08 13:38:30 [www.0] Configuring Catalyst-Default-0.01 ... OK | |
2011-08-08 13:38:30 [www.0] ==> Found dependencies: namespace::autoclean, Catalyst::Plugin::Static::Simple, Catalyst::Plugin::ConfigLoader, Catalyst::Action::RenderView, Config::General, Catalyst::Runtime, Catalyst::Engine::PSGI, Moose | |
... lots more output ... |
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
Changes Makefile.PL blib/ inc/ script/ | |
META.yml README catalyst_default.conf lib/ static@ | |
Makefile app.psgi@ dotcloud.yml root/ t/ |
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
www: | |
type: perl |
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
$ cpan Catalyst::Engine::PSGI | |
$ script/catalystcloud_create.pl PSGI | |
$ ln -s script/catalystcloud.psgi app.psgi |
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 perl | |
use strict; | |
use warnings; | |
use lib 'lib'; | |
use Catalyst::Default; | |
Catalyst::Default->setup_engine('PSGI'); | |
my $app = sub { Catalyst::Default->run(@_) }; |
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
Caught exception in Twitter::List::Tools::Controller::Root->callback "Can't call method "has_column" on an undefined value at /home/dotcloud/perl5/lib/perl5/Catalyst/Authentication/Credential/Twitter.pm line 111." | |
Request | |
do { | |
require Symbol; | |
bless({ | |
_path => "callback", | |
_psgi_env => { | |
"CONTENT_LENGTH" => "", |