summaryrefslogtreecommitdiffstats
path: root/roles/openshift_examples/files/examples/v3.10/quickstart-templates/README.md
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2018-02-05 14:31:47 -0500
committerScott Dodson <sdodson@redhat.com>2018-02-05 15:09:07 -0500
commit5402ff05c7f5695bbe60cb6966e57a038c4fe1c0 (patch)
tree5dfc6f4d0df5bd4d455a09efd1f3914bf76cf9d6 /roles/openshift_examples/files/examples/v3.10/quickstart-templates/README.md
parent90f577883066f7213afca2a1159c69cabece57dc (diff)
downloadopenshift-5402ff05c7f5695bbe60cb6966e57a038c4fe1c0.tar.gz
openshift-5402ff05c7f5695bbe60cb6966e57a038c4fe1c0.tar.bz2
openshift-5402ff05c7f5695bbe60cb6966e57a038c4fe1c0.tar.xz
openshift-5402ff05c7f5695bbe60cb6966e57a038c4fe1c0.zip
Initial support for 3.10
Diffstat (limited to 'roles/openshift_examples/files/examples/v3.10/quickstart-templates/README.md')
-rw-r--r--roles/openshift_examples/files/examples/v3.10/quickstart-templates/README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/roles/openshift_examples/files/examples/v3.10/quickstart-templates/README.md b/roles/openshift_examples/files/examples/v3.10/quickstart-templates/README.md
new file mode 100644
index 000000000..710d5f58d
--- /dev/null
+++ b/roles/openshift_examples/files/examples/v3.10/quickstart-templates/README.md
@@ -0,0 +1,29 @@
+QuickStarts
+===========
+
+QuickStarts provide the basic skeleton of an application. Generally they
+reference a repository containing very simple source code that implements a
+trivial application using a particular framework. In addition they define any
+components needed for the application including a Build configuration,
+supporting services such as Databases, etc.
+
+You can instantiate these templates as is, or fork the source repository they
+reference and supply your forked repository as the source-repository when
+instantiating them.
+
+* [CakePHP](https://raw.githubusercontent.com/openshift/cakephp-ex/master/openshift/templates/cakephp-mysql.json) - Provides a basic CakePHP application with a MySQL database. For more information see the [source repository](https://github.com/openshift/cakephp-ex).
+* [CakePHP persistent](https://raw.githubusercontent.com/openshift/cakephp-ex/master/openshift/templates/cakephp-mysql-persistent.json) - Provides a basic CakePHP application with a persistent MySQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/cakephp-ex).
+* [Dancer](https://raw.githubusercontent.com/openshift/dancer-ex/master/openshift/templates/dancer-mysql.json) - Provides a basic Dancer (Perl) application with a MySQL database. For more information see the [source repository](https://github.com/openshift/dancer-ex).
+* [Dancer persistent](https://raw.githubusercontent.com/openshift/dancer-ex/master/openshift/templates/dancer-mysql-persistent.json) - Provides a basic Dancer (Perl) application with a persistent MySQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/dancer-ex).
+* [Django](https://raw.githubusercontent.com/openshift/django-ex/master/openshift/templates/django-postgresql.json) - Provides a basic Django (Python) application with a PostgreSQL database. For more information see the [source repository](https://github.com/openshift/django-ex).
+* [Django persistent](https://raw.githubusercontent.com/openshift/django-ex/master/openshift/templates/django-postgresql-persistent.json) - Provides a basic Django (Python) application with a persistent PostgreSQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/django-ex).
+* [Httpd](https://raw.githubusercontent.com/openshift/httpd-ex/master/openshift/templates/httpd.json) - Provides a basic Httpd static content application. For more information see the [source repository](https://github.com/openshift/httpd-ex).
+* [Nginx](https://raw.githubusercontent.com/sclorg/nginx-ex/master/openshift/templates/nginx.json) - Provides a basic Nginx static content application. For more information see the [source repository](https://github.com/sclorg/nginx-ex).
+* [NodeJS](https://raw.githubusercontent.com/openshift/nodejs-ex/master/openshift/templates/nodejs-mongodb.json) - Provides a basic NodeJS application with a MongoDB database. For more information see the [source repository](https://github.com/openshift/nodejs-ex).
+* [NodeJS persistent](https://raw.githubusercontent.com/openshift/nodejs-ex/master/openshift/templates/nodejs-mongodb-persistent.json) - Provides a basic NodeJS application with a persistent MongoDB database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/nodejs-ex).
+* [Rails](https://raw.githubusercontent.com/openshift/rails-ex/master/openshift/templates/rails-postgresql.json) - Provides a basic Rails (Ruby) application with a PostgreSQL database. For more information see the [source repository](https://github.com/openshift/rails-ex).
+* [Rails persistent](https://raw.githubusercontent.com/openshift/rails-ex/master/openshift/templates/rails-postgresql-persistent.json) - Provides a basic Rails (Ruby) application with a persistent PostgreSQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/rails-ex).
+
+Note: This file is processed by `hack/update-external-examples.sh`. New examples
+must follow the exact syntax of the existing entries. Files in this directory
+are automatically pulled down, do not modify/add files to this directory.