├── .gitignore ├── README.md ├── circle.yml ├── index.tpl.html ├── package.json ├── scripts ├── build.sh ├── deploy.sh ├── serve.js └── upload.sh ├── src ├── MyOnlyComponent.jsx ├── cutedog.jpg ├── index.jsx └── main.less └── webpack.config.babel.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/circle.yml -------------------------------------------------------------------------------- /index.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/index.tpl.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/scripts/serve.js -------------------------------------------------------------------------------- /scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/scripts/upload.sh -------------------------------------------------------------------------------- /src/MyOnlyComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/src/MyOnlyComponent.jsx -------------------------------------------------------------------------------- /src/cutedog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/src/cutedog.jpg -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/main.less: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #FFF9F9; 3 | } -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbalicki2/react-aws-deployments/HEAD/webpack.config.babel.js --------------------------------------------------------------------------------