Get Quota Quest running in 3 minutes!
- Go to https://platform.openai.com/api-keys
- Sign up or log in
- Create an API key
- Copy the key (starts with
sk-...)
# Navigate to the project
cd quota-quest
# Copy environment template
cp server/.env.example server/.env
# Edit the .env file and paste your API key
nano server/.env
# or
open server/.envYour .env file should look like:
OPENAI_API_KEY=sk-your-actual-key-here
PORT=3000
./start-game.shThis will:
- Install dependencies automatically
- Start the server
- Open the game in your browser
# Install dependencies
cd server
npm install
# Start server
npm start
# In another terminal, serve the frontend
cd ..
python3 -m http.server 8000
# Open http://localhost:8000 in your browserYou should see the retro green terminal-style game. Click [START GAME] and begin your journey to Austin! 🎮
"Error connecting to grading server"
- Make sure the server is running (you should see "🚀 Quota Quest server running")
- Check that port 3000 isn't being used by another app
"Invalid API key"
- Verify your API key is correctly pasted in
server/.env - Make sure there are no extra spaces or quotes
- The key should start with
sk-
Game doesn't load
- Check browser console (F12) for errors
- Try a different browser (Chrome, Firefox, Safari)
- Make sure you're accessing through localhost, not file://
Need more help? Check the full README.md