Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.93 KB

README.md

File metadata and controls

53 lines (38 loc) · 1.93 KB

Frontend

  1. Frontend
    1. Run (Production Build)
    2. Run (Development Mode)
    3. Development Tools
    4. NodeJS
    5. Create React App Info

Run (Production Build)

The production build will be optimized and therefore faster than the development mode. If this does not work or you cannot or do not want to install anything, try the development build instead.

  1. Start the backend server (as described in the backend readme)
  2. Install NodeJS if not yet installed
  3. npm i
  4. npm run build
  5. npm install -g serve
  6. serve -s build -l 3000
  7. Open localhost:3000

Run (Development Mode)

  1. Start the backend server (as described in the backend readme)
  2. Install NodeJS if not yet installed
  3. npm i
  4. npm start
  5. Open localhost:3000

Development Tools

NodeJS

https://github.com/nodesource/distributions/blob/master/README.md

curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs

Create React App Info

This project was bootstrapped with Create React App.

npm run build builds the app for production to the build folder. See the section about deployment for more information.

You can learn more in the Create React App documentation. To learn React, check out the React documentation.