An open API service indexing awesome lists of open source software.

https://github.com/bugbiteme/cocktail-ai-web-js


https://github.com/bugbiteme/cocktail-ai-web-js

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Web Front End for cocktail-ai RestAPI

## Test locally
- Set the `REACT_APP_API_URL` environment variable on your system to the `generate-recipe` endpoint/path
(Example)
```
export REACT_APP_API_URLL="https://cocktail-ai/generate-recipe/"
```

- Launch app from command line from within the `CocktailAiWeb` directory

```
npx expo start
```

## Deploy and run in a container

```
podman build -t my-react-app .

podman run -p 3000:3000 my-react-app
```