├── .gitignore ├── LICENSE ├── ProcFile ├── README.md ├── client ├── .gitignore ├── README.md ├── package.json ├── public │ ├── MERN.png │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── components │ │ ├── App.js │ │ ├── styles │ │ │ └── App.css │ │ └── tests │ │ │ └── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js └── yarn.lock ├── models └── sampleModel.js ├── package.json ├── routes └── api │ └── crud.js ├── server.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /ProcFile: -------------------------------------------------------------------------------- 1 | web: yarn run start -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/MERN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/public/MERN.png -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/components/App.js -------------------------------------------------------------------------------- /client/src/components/styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/components/styles/App.css -------------------------------------------------------------------------------- /client/src/components/tests/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/components/tests/App.test.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /models/sampleModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/models/sampleModel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/package.json -------------------------------------------------------------------------------- /routes/api/crud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/routes/api/crud.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/server.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GauravWalia19/mernboilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------