This is a recipe app that uses the Spoonacular API to fetch recipes. Make an account on Spoonacular to get an API key. at https://spoonacular.com/food-api/console#Dashboard
Our app uses Open AI's Davinci GPT-3 model to fill in instructions on recipes from the API that are partially incomplete. Please get an API key here at https://platform.openai.com/account/api-keys
- Clone the repository
- Create a
.env
file in the root directory and add your Spoonacular API key(s), and your Open AI key, (modeled after the\example.env
file) - Create another
.env
in your \frontend directory modeled after the\frontend\example.env
file - Run
npm install
cd frontend
and runnpm install
- For development, run
npm run watch
in the root directory. In a separate terminal,cd frontend
and runnpm run start
. - For deployment, run
npm run build:deploy
in the root directory, thennpm run start