├── .gitignore ├── README.md ├── aws-sdk-image.jpg ├── client ├── .env ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ └── Home.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── serviceWorker.js └── yarn.lock ├── image-upload-aws.png ├── package.json ├── routes └── api │ └── profile.js └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_STORE 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/README.md -------------------------------------------------------------------------------- /aws-sdk-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/aws-sdk-image.jpg -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/components/Home.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /image-upload-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/image-upload-aws.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/package.json -------------------------------------------------------------------------------- /routes/api/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/routes/api/profile.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/file-uploads-aws-react-node/HEAD/server.js --------------------------------------------------------------------------------