FindYourFood
React frontend and express.js server.
Installation
Run npm install
in both the client
and server
directories.
Running the app in developmer mode
- Create a
.env
file with your own API key see.env.example
. - Update const PORT in server.js to your desired port.
- Run
npm start
in theclient
directory. - Run
node server.js
in theserver
directory. - Update const SERVER_URL to the server URL(PORT) ex
"http://localhost:8080";
inmy-new-app/src/MainPage.js