https://github.com/bugbiteme/cocktail-ai-web-js
https://github.com/bugbiteme/cocktail-ai-web-js
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/bugbiteme/cocktail-ai-web-js
- Owner: bugbiteme
- Created: 2023-12-18T22:15:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T21:56:04.000Z (over 2 years ago)
- Last Synced: 2025-01-31T12:36:12.027Z (over 1 year ago)
- Language: JavaScript
- Size: 214 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```