Skip to content

Commit 1beee9d

Browse files
committed
Added sample webapp script.
1 parent 5d5a6ca commit 1beee9d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

files/webapp.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
3+
cat << EOM > /var/www/html/index.html
4+
<html>
5+
<head><title>Meow!</title></head>
6+
<body style="background-image: linear-gradient(red,orange,yellow,green,blue,indigo,violet);">
7+
<center><img src="http://placekitten.com/800/600"></img></center>
8+
<marquee><h1>Meow World</h1></marquee>
9+
</body>
10+
</html>
11+
EOM
12+
13+
echo "Your demo is now ready."

0 commit comments

Comments
 (0)