Amira Abdelmohsen
Dinasty Kelly
Tahsin Hossain
Mike Esquivel
Set up and run the client (front-end) application on your local machine
- Start a terminal (e.g., Git Bash) on your local machine.
- Go to the "final-project-client" folder, enter the command to install dependencies:
npm install - Start the client application by entering the command:
npm start - After the client application is successfully started, a web browser is automatically opened at the address:
http://localhost:3000
This error indicates that your application uses an algorithm or key size not supported by OpenSSL 3.0.
- If you use Windows, in the
package.jsonfile, set the "scripts" attributes as follows:
"scripts": {
"start": "SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
...
},
- If you use Mac OSX or Linux, include the following command in the
~/.bash_profileor~/.bashrcfile.
export NODE_OPTIONS=--openssl-legacy-provider