https://github.com/hzhai96/AWSOnlineFileStorageSystem
.
├── src # main source files
│ ├── backend # backend api implementation
│ ├── components # seperate re-useable components
│ ├── redux # redux for states managements
│ ├── App.js # main entrance
│ ├── index.js # some basic configurations for App
│ └── ... # etc.
├── public # public resources(image or somethings)
└── README.md
└── ...
In the project directory, you can run:
Install dependencies packages
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Build new image tagged as dockerized-react:
$ docker build . -t dockerized-react
Run image at port 3000:
$ docker run -p 3000:3000 -d dockerized-react