PollyGlot is a solo project for the Intro to AI Engineering
chapter from "The AI Engineer Path" on Scrimba. Made with Remix. Deployed on Netlify.
This application requires an OpenAI API key to function properly. Follow these steps to set it up:
-
Get an API Key:
- Create an account at OpenAI's platform
- Navigate to the API Keys section
- Create a new secret key
- Copy the key (note that you won't be able to see it again after this)
-
Set up the API Key:
Option 1: Using a
.env
file:echo "OPENAI_API_KEY=your-api-key-here" > .env
npm run dev
First, build your app for production:
npm run build
Then run the app in production mode:
npm start
Now you'll need to pick a host to deploy it to.
If you're familiar with deploying Node applications, the built-in Remix app server is production-ready.
Make sure to deploy the output of npm run build
build/server
build/client