Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.

Commit cc5e062

Browse files
committed
Update with Serverless Blog Web Application Reference Architecture
1 parent ceda53f commit cc5e062

144 files changed

Lines changed: 11687 additions & 1363 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
### Eclipse ###
2+
3+
.metadata
4+
bin/
5+
tmp/
6+
*.tmp
7+
*.bak
8+
*.swp
9+
*~.nib
10+
local.properties
11+
.settings/
12+
.loadpath
13+
.recommenders
14+
15+
# Eclipse Core
16+
.project
17+
18+
# External tool builders
19+
.externalToolBuilders/
20+
21+
# Locally stored "Eclipse launch configurations"
22+
*.launch
23+
24+
# PyDev specific (Python IDE for Eclipse)
25+
*.pydevproject
26+
27+
# CDT-specific (C/C++ Development Tooling)
28+
.cproject
29+
30+
# JDT-specific (Eclipse Java Development Tools)
31+
.classpath
32+
33+
# Java annotation processor (APT)
34+
.factorypath
35+
36+
# PDT-specific (PHP Development Tools)
37+
.buildpath
38+
39+
# sbteclipse plugin
40+
.target
41+
42+
# Tern plugin
43+
.tern-project
44+
45+
# TeXlipse plugin
46+
.texlipse
47+
48+
# STS (Spring Tool Suite)
49+
.springBeans
50+
51+
# Code Recommenders
52+
.recommenders/
53+
54+
55+
### Gradle ###
56+
.gradle
57+
build/
58+
59+
# Ignore Gradle GUI config
60+
gradle-app.setting
61+
62+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
63+
!gradle-wrapper.jar
64+
65+
# Cache of project
66+
.gradletasknamecache
67+
68+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
69+
# gradle/wrapper/gradle-wrapper.properties
70+
71+
node_modules/
72+
73+
.DS_Store
74+
dist/
75+
website/dist/

Gruntfile.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
module.exports = function(grunt) {
2+
grunt.initConfig({
3+
pkg: grunt.file.readJSON('package.json'),
4+
5+
// Begin grunt-phantomas config
6+
// https://github.com/stefanjudis/grunt-phantomas/blob/master/README.md
7+
phantomas: {
8+
index: {
9+
options: {
10+
indexPath : './phantomas/index/',
11+
// phantomas options passed directly to exec
12+
// https://github.com/macbre/phantomas
13+
options: {
14+
timeout: 30,
15+
'film-strip': false
16+
},
17+
url: 'http://serverless-blog.s3-website-us-east-1.amazonaws.com',
18+
buildUi: true,
19+
numberOfRuns: 30
20+
}
21+
},
22+
login: {
23+
options: {
24+
indexPath: './phantomas/login/',
25+
options: {},
26+
url: 'https://n3a93skkc9.execute-api.us-east-1.amazonaws.com/prod/login',
27+
buildUi: true
28+
}
29+
}
30+
}
31+
// End grunt-phantomas config
32+
});
33+
34+
grunt.loadNpmTasks('grunt-phantomas');
35+
grunt.registerTask('default', ['phantomas:index']);
36+
};

README.md

Lines changed: 184 additions & 32 deletions
Large diffs are not rendered by default.

README/README-CN.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

README/README-DE.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

README/README-ES.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)