├── .gitignore ├── README.md ├── docs └── demo-images │ ├── install-video.png │ └── rhdm7.png ├── init.bat ├── init.sh ├── installs ├── .gitignore └── README.md └── support ├── README ├── openshift ├── README.md ├── credentials.yaml ├── init-openshift.ps1 ├── init-openshift.sh ├── provision.ps1 └── provision.sh ├── standalone-full.xml ├── unzip.vbs └── userinfo.properties /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .DS_STORE 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/README.md -------------------------------------------------------------------------------- /docs/demo-images/install-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/docs/demo-images/install-video.png -------------------------------------------------------------------------------- /docs/demo-images/rhdm7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/docs/demo-images/rhdm7.png -------------------------------------------------------------------------------- /init.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/init.bat -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/init.sh -------------------------------------------------------------------------------- /installs/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | 3 | -------------------------------------------------------------------------------- /installs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/installs/README.md -------------------------------------------------------------------------------- /support/README: -------------------------------------------------------------------------------- 1 | Directory to hold helper files if needed. 2 | -------------------------------------------------------------------------------- /support/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/openshift/README.md -------------------------------------------------------------------------------- /support/openshift/credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/openshift/credentials.yaml -------------------------------------------------------------------------------- /support/openshift/init-openshift.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/openshift/init-openshift.ps1 -------------------------------------------------------------------------------- /support/openshift/init-openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/openshift/init-openshift.sh -------------------------------------------------------------------------------- /support/openshift/provision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/openshift/provision.ps1 -------------------------------------------------------------------------------- /support/openshift/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/openshift/provision.sh -------------------------------------------------------------------------------- /support/standalone-full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/standalone-full.xml -------------------------------------------------------------------------------- /support/unzip.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/unzip.vbs -------------------------------------------------------------------------------- /support/userinfo.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbossdemocentral/rhdm7-install-demo/HEAD/support/userinfo.properties --------------------------------------------------------------------------------