This project is a very basic app with a React frontend and Express backend. This app shows how easy it is to get started with Alloy's Unified API.
To get started, you will need to an API key from Alloy Unified API. You can obtain one by signing up for a free account here then navigating to Settings > API Keys. Once you have your API key, in the config.js
file in the root of the directory. Add your API key there.
Next, navigate to the server
directory and install the npm modules and start the server with the following commands:
cd server
npm install
node server.js
To set up the frontend, navigate to the client
directory. Install the dependencies and start the frontend app using the following commands:
npm install
npm start