Simple react application that is used to test deployment workflow.
npm install
npm startBuild into the public/ folder.
npm run buildCheck the output into github, so that you can deploy to any server that has a git client and a web server.
git pushThis command starts a server running on port 3000 so you can see if the build is working as you expected. Control-C to exit.
npm run serveOn the target host, in the folder accessible by your web server, clone the project.
git clone https://github.com/brian32768/react-test.git testIt should be visible at https://yourhost/test/public/
There are probably lots of packages listed in package.json that could be removed.