Skip to content

Commit 4d84b14

Browse files
author
Template builder
committed
Creating template
0 parents  commit 4d84b14

File tree

19 files changed

+281
-0
lines changed

19 files changed

+281
-0
lines changed

.openshift/action_hooks/.gitkeep

Whitespace-only changes.

.openshift/action_hooks/README

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
For information about which action hooks are supported, consult the OpenShift documentation:
2+
3+
https://github.com/openshift/origin-server/blob/master/node/README.writing_applications.md

.openshift/cron/README.cron

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Run scripts or jobs on a periodic basis
2+
=======================================
3+
Any scripts or jobs added to the minutely, hourly, daily, weekly or monthly
4+
directories will be run on a scheduled basis (frequency is as indicated by the
5+
name of the directory) using run-parts.
6+
7+
run-parts ignores any files that are hidden or dotfiles (.*) or backup
8+
files (*~ or *,) or named *.{rpmsave,rpmorig,rpmnew,swp,cfsaved}
9+
10+
The presence of two specially named files jobs.deny and jobs.allow controls
11+
how run-parts executes your scripts/jobs.
12+
jobs.deny ===> Prevents specific scripts or jobs from being executed.
13+
jobs.allow ===> Only execute the named scripts or jobs (all other/non-named
14+
scripts that exist in this directory are ignored).
15+
16+
The principles of jobs.deny and jobs.allow are the same as those of cron.deny
17+
and cron.allow and are described in detail at:
18+
http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/ch-Automating_System_Tasks.html#s2-autotasks-cron-access
19+
20+
See: man crontab or above link for more details and see the the weekly/
21+
directory for an example.
22+

.openshift/cron/daily/.gitignore

Whitespace-only changes.

.openshift/cron/hourly/.gitignore

Whitespace-only changes.

.openshift/cron/minutely/.gitignore

Whitespace-only changes.

.openshift/cron/monthly/.gitignore

Whitespace-only changes.

.openshift/cron/weekly/README

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Run scripts or jobs on a weekly basis
2+
=====================================
3+
Any scripts or jobs added to this directory will be run on a scheduled basis
4+
(weekly) using run-parts.
5+
6+
run-parts ignores any files that are hidden or dotfiles (.*) or backup
7+
files (*~ or *,) or named *.{rpmsave,rpmorig,rpmnew,swp,cfsaved} and handles
8+
the files named jobs.deny and jobs.allow specially.
9+
10+
In this specific example, the chronograph script is the only script or job file
11+
executed on a weekly basis (due to white-listing it in jobs.allow). And the
12+
README and chrono.dat file are ignored either as a result of being black-listed
13+
in jobs.deny or because they are NOT white-listed in the jobs.allow file.
14+
15+
For more details, please see ../README.cron file.
16+

.openshift/cron/weekly/chrono.dat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Time And Relative D...n In Execution (Open)Shift!

.openshift/cron/weekly/chronograph

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
echo "`date`: `cat $(dirname \"$0\")/chrono.dat`"

.openshift/cron/weekly/jobs.allow

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# Script or job files listed in here (one entry per line) will be
3+
# executed on a weekly-basis.
4+
#
5+
# Example: The chronograph script will be executed weekly but the README
6+
# and chrono.dat files in this directory will be ignored.
7+
#
8+
# The README file is actually ignored due to the entry in the
9+
# jobs.deny which is checked before jobs.allow (this file).
10+
#
11+
chronograph
12+

.openshift/cron/weekly/jobs.deny

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#
2+
# Any script or job files listed in here (one entry per line) will NOT be
3+
# executed (read as ignored by run-parts).
4+
#
5+
6+
README
7+

.openshift/markers/.gitkeep

Whitespace-only changes.

README

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
Feel free to change or remove this file, it is informational only.
2+
3+
Repo layout
4+
===========
5+
php/ - Externally exposed php code goes here
6+
libs/ - Additional libraries
7+
misc/ - For not-externally exposed php code
8+
../data - For persistent data (full path in environment var: OPENSHIFT_DATA_DIR)
9+
deplist.txt - list of pears to install
10+
.openshift/action_hooks/pre_build - Script that gets run every git push before the build
11+
.openshift/action_hooks/build - Script that gets run every git push as part of the build process (on the CI system if available)
12+
.openshift/action_hooks/deploy - Script that gets run every git push after build but before the app is restarted
13+
.openshift/action_hooks/post_deploy - Script that gets run every git push after the app is restarted
14+
15+
16+
Notes about layout
17+
==================
18+
Please leave php, libs and data directories but feel free to create additional
19+
directories if needed.
20+
21+
Note: Every time you push, everything in your remote repo dir gets recreated
22+
please store long term items (like an sqlite database) in ../data which will
23+
persist between pushes of your repo.
24+
25+
26+
Environment Variables
27+
=====================
28+
29+
OpenShift provides several environment variables to reference for ease
30+
of use. The following list are some common variables but far from exhaustive:
31+
32+
$_ENV['OPENSHIFT_APP_NAME'] - Application name
33+
$_ENV['OPENSHIFT_DATA_DIR'] - For persistent storage (between pushes)
34+
$_ENV['OPENSHIFT_TMP_DIR'] - Temp storage (unmodified files deleted after 10 days)
35+
36+
When embedding a database using 'rhc cartridge add', you can reference environment
37+
variables for username, host and password:
38+
39+
$_ENV['OPENSHIFT_MYSQL_DB_HOST'] - DB host
40+
$_ENV['OPENSHIFT_MYSQL_DB_PORT'] - DB Port
41+
$_ENV['OPENSHIFT_MYSQL_DB_USERNAME'] - DB Username
42+
$_ENV['OPENSHIFT_MYSQL_DB_PASSWORD'] - DB Password
43+
44+
To get a full list of environment variables, simply add a line in your
45+
.openshift/action_hooks/build script that says "export" and push.
46+
47+
deplist.txt
48+
===========
49+
50+
A list of pears to install, line by line on the server. This will happen when
51+
the user git pushes.
52+
53+
54+
Additional information
55+
======================
56+
To access the Zend Management console go to http://app-domain.rhcloud.com/ZendServer

deplist.txt

Whitespace-only changes.

libs/.gitkeep

Whitespace-only changes.

misc/.gitkeep

Whitespace-only changes.

php/health_check.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
print 1;
3+
?>

php/index.php

+158
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<title>Welcome to OpenShift</title>
7+
<style>
8+
html {
9+
background: black;
10+
}
11+
body {
12+
background: #333;
13+
background: -webkit-linear-gradient(top, black, #666);
14+
background: -o-linear-gradient(top, black, #666);
15+
background: -moz-linear-gradient(top, black, #666);
16+
background: linear-gradient(top, black, #666);
17+
color: white;
18+
font-family: "Helvetica Neue",Helvetica,"Liberation Sans",Arial,sans-serif;
19+
width: 40em;
20+
margin: 0 auto;
21+
padding: 3em;
22+
}
23+
a {
24+
color: white;
25+
}
26+
27+
h1 {
28+
text-transform: capitalize;
29+
-moz-text-shadow: -1px -1px 0 black;
30+
-webkit-text-shadow: 2px 2px 2px black;
31+
text-shadow: -1px -1px 0 black;
32+
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
33+
background: #CC0000;
34+
width: 22.5em;
35+
margin: 1em -2em;
36+
padding: .3em 0 .3em 1.5em;
37+
position: relative;
38+
}
39+
h1:before {
40+
content: '';
41+
width: 0;
42+
height: 0;
43+
border: .5em solid #91010B;
44+
border-left-color: transparent;
45+
border-bottom-color: transparent;
46+
position: absolute;
47+
bottom: -1em;
48+
left: 0;
49+
z-index: -1000;
50+
}
51+
h1:after {
52+
content: '';
53+
width: 0;
54+
height: 0;
55+
border: .5em solid #91010B;
56+
border-right-color: transparent;
57+
border-bottom-color: transparent;
58+
position: absolute;
59+
bottom: -1em;
60+
right: 0;
61+
z-index: -1000;
62+
}
63+
h2 {
64+
margin: 2em 0 .5em;
65+
border-bottom: 1px solid #999;
66+
}
67+
68+
pre {
69+
background: black;
70+
padding: 1em 0 0;
71+
-webkit-border-radius: 1em;
72+
-moz-border-radius: 1em;
73+
border-radius: 1em;
74+
color: #9cf;
75+
}
76+
77+
ul {
78+
margin: 0;
79+
padding: 0;
80+
}
81+
li {
82+
list-style-type: none;
83+
padding: .5em 0;
84+
}
85+
86+
.brand {
87+
display: block;
88+
text-decoration: none;
89+
}
90+
.brand .brand-image {
91+
float: left;
92+
border:none;
93+
}
94+
.brand .brand-text {
95+
float: left;
96+
font-size: 24px;
97+
line-height: 24px;
98+
padding: 4px 0;
99+
color: white;
100+
text-transform: uppercase;
101+
}
102+
.brand:hover,
103+
.brand:active {
104+
text-decoration: underline;
105+
}
106+
107+
.brand:before,
108+
.brand:after {
109+
content: ' ';
110+
display: table;
111+
}
112+
.brand:after {
113+
clear: both;
114+
}
115+
</style>
116+
</head>
117+
<body>
118+
<a href="http://openshift.com" class="brand">
119+
<img class="brand-image"
120+
alt="OpenShift logo"
121+
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAgCAYAAABU1PscAAAAAXNSR0IArs4c6QAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAARHgAAER4B27UUrQAABUhJREFUWMPFWFlsVGUU/s5/70zbaSltA7RQpJ2lC9CFkQkWIgSJxkAhRA0JCYFq4hPG6JsoGKNCtPigxqhvGlPAuGIaE4igNaElbIW2yNL2tkOtTYGWCqWF2e79fCh7p1Bmpnge/3vuOef7z/nPJiTxMHS6pMRuu6YqFNTTAJYSyAU4GZB0AH2AGCANAfc5Qrba6T3HrmECScYLwCioSIcV2AjidQDZ45Q/LJRaWrLV03X89P8GwHB5XwG4DcDkGPWEBKimNrzN094efGQAzjm9GWHFr4R4LiHKgFaSL3r8zYcmHEBbkW+KFo7UEyhKsNeHlMgyV8eJo4kQpqId9ub6HCoc+XWcxl8lcBTATwDax8GfZtHa054/f/bNg8ZcnyOhHjBc834E8MJ9/vML8aYZQX1hd1PP3WFXkhMRfYkIlpOoGomc0WRRTnch+XAQWG2KTNJNLbuy68C/cQMwXOWrAKkdgz8A8kMdg9X5fn/gQcI7POXLaMk3AGbe/P8SbF0D1KcGRGXpIJJpIQkWBHhnsf/Ie3GF0DmnMxmQT8bg7RellXr8ze+Ox3gAcBvNf+iUUhH5FODLSvScAerDGpiVxTAyGUYKzICA34nCwbhDyHB7N4L8PAofhVzh9jfvjffR/ZZTnupIsR8G0C9EjW7Tfnii/dBgrPL0u83kmjHy33Z3Z/zG97uKi7xpWA8GHZpE1mcZRne8MvXblfbxqQAWR+Fp+mdW5hZPjAqu5JVlhrTwOgrXi2ABbjjchF4FYGvi0qhprgagjYod4OeldXWRWBUEtdBjEH4mwIJ7vF2V4Dqgot0+NEFdPAqmdZ5tAXA8Slx6LrpKsxMHQJge5ft1v0oe2OOu+PZ39+LCOFqImqiXo8JzAeBkXlnmnoKK9LgACJl2R9gELsHW1saUwKCpnbIoa8UMTokVgGXJmSjHkfNWUlWDy9d6USVdyoiEF8b1iElxQKHuPG1D/bCtVEBhCiykMQQFgCK2mN2sSx+tkdcbhGq7wKSkK9RnmsCG2xVSLsflAR1S6eloWhawtF8yGJGskSJDBdQR8pIjZMXcfFmm1gOg2lRaSRdT1AD1PBPQbCAyxcRMifCpc41HEtILNbh9s8SSvYTUmBp2LDGOdCOB1OD0XbeByWliwY5bugc9nU2T4wqhCx7PNAV9bSGwARp3TzVaP0j09GQUzJubLUgefY3SEHMh63MVr4FIlYL+7C1AlCwAmxM+/plYy6hhgN2xp1HBawAr72krnH3uoicTaXyHx7uIwKZoT0QhUhszAAI7x7ivL0a60/jp77yyTFrWt6N6rxE99c7OkxdiBhC2y/cAorXHpama/aNG8dkOO32b6p3zTzXmeysfPu4LkkKafA3IrGjfCfPtuGfiPlfx+xBsuWtwpa3zIuy2YaoZ5o0eSQc5TVnb53aeeAuk9eBtRvkqUH0MoTsqA7nL429eFzeA3lyfQ08eaiNgCrjTYNozQ1S+WyUfQCosTLqZ+oiDUNwhggPujpZTuCMXGwUV6cJgKYnNIJffR3df2NLLZ5871puQrUR//pzpU7rOnAfJP53eDELrsoPpk4RIGRn5xqIBAAdBOCAoBjBjPJsJUdZSt9HSOGFrld5cn2M4KbwfkIUJzqYhQlYWdJ7YN2FrFQCY3nPsmk61AuSuRNYyUdaiRBk/7tViR37Zcir1JYC8WNshgjWWPfhq0dmzVx/5bhQAWnLKU1Md8gZHOsjxAgmD2GEKq4s6m1sxASQPu16HiBh53goqPg9ac0TEcwNQEOBlQAZEcMgC94dDZt2c7r8GMIH0H43ZRDC51RVCAAAAAElFTkSuQmCC">
122+
<div class="brand-text"><strong>Open</strong>Shift</div>
123+
</a>
124+
<h1>
125+
Welcome to OpenShift
126+
</h1>
127+
<p>
128+
Place your application here
129+
</p>
130+
<p>
131+
In order to commit to your new project, go to your projects git repo (created with the rhc app create command). Make your changes, then run:
132+
</p>
133+
<pre>
134+
git commit -a -m 'Some commit message'
135+
git push
136+
</pre>
137+
<p>
138+
Then reload this page.
139+
</p>
140+
<p>
141+
Alternatively, go to <a href="/ZendServer">Zend Server Console</a> and upload your application.
142+
</p>
143+
<h2>
144+
What's next?
145+
</h2>
146+
<ul>
147+
<li>
148+
Why not visit us at <a href="http://openshift.redhat.com">http://openshift.redhat.com</a>, or
149+
</li>
150+
<li>
151+
You could get help in the <a href="http://www.redhat.com/openshift">OpenShift forums</a>, or
152+
</li>
153+
<li>
154+
You're welcome to come chat with us in our IRC channel at #openshift on freenode.net
155+
</li>
156+
</ul>
157+
</body>
158+
</html>

0 commit comments

Comments
 (0)