Skip to content

Commit 7926a33

Browse files
author
anna.spysz+test@stackery.io
committed
Initial stack
Initialized from repo: https://github.com/stackery/empty-sam-stack branch/tag: master
0 parents commit 7926a33

File tree

5 files changed

+29
-0
lines changed

5 files changed

+29
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# local build directories
2+
.aws-sam
3+
.stackery
4+
5+
# dependencies

.stackery-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
stack-name: empty-sam-stack

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Stackery Blank SAM Template
2+
3+
This is a sample template for a serverless AWS Lambda application.
4+
5+
Here is an overview of the files:
6+
7+
```text
8+
.
9+
├── deployHooks/ <-- Directory for storing deployment hooks
10+
├── .gitignore <-- Gitignore for Stackery
11+
├── .stackery-config.yaml <-- Default CLI parameters for root directory
12+
├── README.md <-- This README file
13+
└── template.yaml <-- SAM infrastructure-as-code template
14+
```

deployHooks/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This directory was generated by [Stackery.io](https://www.stackery.io).
2+
3+
We recommend updating this readme with your own deployment phase hooks specific documentation.
4+
5+
# Stackery Documentation
6+
Documentation for deployment phase hooks scripts can be found at [https://docs.stackery.io/docs/workflow/deploying-serverless-stacks/#deployment-phase-hooks](https://docs.stackery.io/docs/workflow/deploying-serverless-stacks/#deployment-phase-hooks).

template.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
AWSTemplateFormatVersion: '2010-09-09'
2+
Transform: 'AWS::Serverless-2016-10-31'
3+
Resources: {}

0 commit comments

Comments
 (0)