-
Change the
install_directory
variable inApp.js
according to the directory in which you'll be serving this project. Set directory relative to root of your server (forHeroku
use/
) -
Build the project with
npm run build
-
Serve the content of
/build
directory
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
.
|-- README.md
|-- deploy.sh
|-- key.pem.enc
|-- package.json
|-- public
| |-- data
| | |-- india_map.json
| | |-- india_map_dict.json
|-- src
| |-- App.css
| |-- App.js
| |-- Component
| | |-- Footer.js
| | `-- Menu
| | |-- Menu.js
| | |-- MenuItem.js
| | `-- index.js
| |-- Pages
| | |-- Graph
| | | |-- Table
| | | | |-- SubTable.js
| | | | |-- Table.js
| | | | |-- TableOnly.js
| | | | `-- TableRow.js
| | | |-- components
| | | | |-- CardItem.js
| | | | |-- Graph.js
| | | | |-- GraphDataOptions.js
| | | | |-- GraphDataTimelineOptions.js
| | | | `-- GraphDataTotalOptions.js
| | | `-- index.js
| | `-- Map
| | |-- Content.js
| | |-- components
| | | |-- InfoBar.js
| | | |-- Map.js
| | | `-- Timeline.js
| | `-- index.js
| |-- Switch.css
| |-- index.css
| |-- index.js
| |-- logo.svg
| `-- utils
| `-- CookieHelper.js