Skip to content

Commit

Permalink
Add support for Joomla
Browse files Browse the repository at this point in the history
  • Loading branch information
lmacken committed Oct 16, 2011
1 parent b458cdc commit c1d76b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -35,4 +35,5 @@ Deploy a variety of applications to the OpenShift cloud with a single command.
* piwik - Open source web analytics
* sugarcrm - Open source business & social CRM software
* tweetstream - A realtime Twitter aggregator
* joomla - A dynamic portal engine and content management system

4 changes: 4 additions & 0 deletions openshift-app-tester
Expand Up @@ -157,6 +157,10 @@ class TestSugarCRM(OpenShiftQuickstartTest, unittest.TestCase):
title = 'Sugar Setup Wizard'
index = '/install.php?goto=SilentInstall&cli=true'

class TestJoomla(OpenShiftQuickstartTest, unittest.TestCase):
app = 'joomla'
title = 'Congratulations! You have a Joomla! site!'


if __name__ == '__main__':
if not login:
Expand Down
1 change: 1 addition & 0 deletions openshift-quickstarter
Expand Up @@ -56,6 +56,7 @@ quickstarts = {
'sugarcrm': {'type': php, 'db': True, 'repo': openshift_repo},
'tweetstream': {'type': java, 'db': False, 'repo': openshift_repo,
'manual_config': True},
'joomla': {'type': php, 'db': True, 'repo': openshift_repo},
}

run = lambda cmd, **kw: subprocess.call(cmd, shell=True, **kw)
Expand Down

0 comments on commit c1d76b7

Please sign in to comment.