Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nichtich/app-padadoy
Simply deploy PSGI web applications
https://github.com/nichtich/app-padadoy
Last synced: 2 days ago
JSON representation
Simply deploy PSGI web applications
- Host: GitHub
- URL: https://github.com/nichtich/app-padadoy
- Owner: nichtich
- Created: 2012-04-11T14:29:09.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-09-26T13:40:58.000Z (about 12 years ago)
- Last Synced: 2024-10-27T17:26:05.220Z (about 2 months ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/App-padadoy/
- Size: 145 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
**padadoy** is a simple command line application to deploy PSGI applications.
In short, padadoy is just a layer on top of `git`, `Starman`, and `Carton`.*This is an early preview - be warned!*
Your application must be managed in a git repository that should conform to
the following layout, inspired by the PaaS providers dotCloud and OpenShift.
You can create a boilerplate with `padadoy create`.app/
app.psgi - application startup script
lib/ - local perl modules (at least the actual application)
t/ - unit tests
Makefile.PL - used to determine required modules and to run testsdeplist.txt - a list of perl modules required to run (o)
data/ - persistent data (o)dotcloud.yml - basic configuration for dotCloud (o)
libs -> app/lib - symlink for OpenShift (o)
perl/
index.pl - CGI script to run app.psgi for OpenShift (o)
deplist.txt -> app/deplist.txt - symlink for OpenShift (o).openshift/ - hooks for OpenShift (o)
action_hooks/ - scripts that get run every git push (o)This directory layout helps to easy deploy on multiple platforms. Files and
directories marked by `(o)` are optional, depending on what platform you want
to deploy to.Padadoy facilitates deploying to your own servers just like a PaaS provider.
On the deployment machine there is a directory with the following structure:repository/ - the bare git repository that the app is pushed to
current -> ... - symbolic link to the current working directory
new -> ... - symbolic link to the new working directory on updates
padadoy.yml - local configurationYou can create this layout with `padadoy remote init`. After adding the remote
repository as git remote, you can simply deploy new versions with `git push`.The [documentation at CPAN](http://search.cpan.org/dist/App-Padadoy/), as
generated from `lib/App/Padadoy.pm` contains more details.Feel free to fork and submit patches and issues!