Skip to content

Commit 2a88a0d

Browse files
authored
Merge pull request #1 from huksley/master
Latest changes
2 parents c5ab075 + c0742a5 commit 2a88a0d

File tree

9 files changed

+366
-183
lines changed

9 files changed

+366
-183
lines changed

index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,19 @@
22
<html lang="en" data-framework="react">
33
<head>
44
<meta charset="utf-8">
5-
<title>React • TodoMVC</title>
5+
<title>ReactJS • TodoMVC</title>
66
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
77
<link rel="stylesheet" href="css/base.css">
88
<link rel="stylesheet" href="css/index.css">
99
<link rel="stylesheet" href="css/spinner.css">
10-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.2/gh-fork-ribbon.min.css" />
10+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.2/gh-fork-ribbon.min.css">
11+
<meta name="description" content="Serverless + AWS API Gateway + AWS Lambda + AWS DynamoDB + Webpack + ReactJS + ReactRouter + Server Side Rendering + Isomorphic app">
12+
<meta property="og:title" content="Isomorphic TodoMVC example in ReactJS with Serverless and DynamoDB">
13+
<meta property="og:description" content="Serverless + AWS API Gateway + AWS Lambda + AWS DynamoDB + Webpack + ReactJS + ReactRouter + Server Side Rendering + Isomorphic app. Fork me on GitHub.">
14+
<meta property="og:url" content="https://todo.wizecore.com/">
15+
<meta property="og:image" content="https://cdn.rawgit.com/huksley/todo-react-ssr-serverless/08650f52/todo.png">
16+
<meta property="og:type" content="article">
17+
<meta property="og:locale" content="en_US" />
1118
</head>
1219
<body>
1320
<script id="props" data-props='{{props}}'></script>

package-lock.json

Lines changed: 25 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "rrv4-ssr-and-code-splitting",
2+
"name": "todo-react-ssr-serverless",
33
"version": "0.0.0",
4-
"description": "This is a demo of RRv4 with SSR and code splitting.",
5-
"main": "index.js",
4+
"description": "Isomorphic TodoMVC example in ReactJS with Serverless and DynamoDB",
5+
"main": "server.js",
66
"scripts": {
77
"lint": "eslint ./src",
88
"start": "node ./server.js",
99
"build": "webpack",
1010
"test": "echo \"Error: no test specified\" && exit 1",
11-
"sls": "webpack && sls offline start",
11+
"sls": "webpack && sls offline --dontPrintOutput",
1212
"sls:deploy": "webpack && sls deploy"
1313
},
1414
"repository": {

public/robots.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
User-agent: *
2-
Disallow: /
2+
Disallow: /api
3+

0 commit comments

Comments
 (0)