-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fef8231
commit 28bc37a
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
aws cloudformation delete-stack --stack-name $1 --region=us-east-1 | ||
|
||
|
||
#./delete.sh stack.yaml stack-parameters.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Udagram Project</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content=""> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat|Open+Sans"> | ||
</head> | ||
<body> | ||
<header class="page-header"> | ||
<h1>it works! Hahaha</h1> | ||
</header> | ||
<div class="container"> | ||
<main> | ||
<h2 class="visuallyhidden">Articles</h2> | ||
<article> | ||
<header> | ||
<h3>Oluwafemi</h3> | ||
<time datetime="2016-05-12T08:00">June 26</time> | ||
</header> | ||
|
||
<p>This is a simple place holder to show that it works</p> | ||
|
||
<a class="read-more" href="#">Read more</a> | ||
</article> | ||
</main> | ||
</div> | ||
<footer> | ||
Made with ♥ by Oluwafemi | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
aws cloudformation validate-template --template-body file://$1 | ||
|
||
#./validate.sh stack.yaml stack-parameters.json |