# Roblox Cloud API Configuration # Copy this file to .env.roblox (or .env for local development) and fill in your values # # Priority: .env > .env.roblox # - .env.roblox: Default project configuration (can be shared with team) # - .env: Local development overrides (not committed to Git) # Recommended: Use new variable names (concise and clear) ROBLOX_API_KEY=your_api_key_here UNIVERSE_ID=your_universe_id TEST_PLACE_ID=your_place_id # Legacy: Old variable names (still supported for backward compatibility) # RBXCLOUD_API_KEY=your_api_key_here # RBXCLOUD_UNIVERSE_ID=your_universe_id # RBXCLOUD_PLACE_ID=your_place_id # Proxy Configuration (Optional) # Uncomment and set if you need to use a proxy to access Roblox APIs # HTTPS_PROXY=http://proxy.example.com:8080 # HTTP_PROXY=http://proxy.example.com:8080 # Proxy with authentication: # HTTPS_PROXY=http://username:password@proxy.example.com:8080 # Note: # - Get your API key from https://create.roblox.com/credentials # - Find Universe ID in your game's settings # - Find Place ID in the place's settings # - Make sure your API key has the following permissions: # - universe-places.write (for uploading place files) # - universe-luau-execution.run (for running test scripts) # - Proxy priority: HTTPS_PROXY > HTTP_PROXY