βš™οΈ Setup & Install

Install Gameer SDK and authenticate with your API key to start generating games from your schema.

πŸ”‘ Get Your API Keys

The Gameer SDK is currently in private beta. Join our exclusive waitlist to get early access to API keys, documentation, and support for building AI-powered games.

Exclusive Access

Be the first to create immersive games and worlds with Gameer

By joining, you agree to receive updates about Gameer. Unsubscribe anytime.

Already have access? Jump to setup

πŸ“‹ Setup Instructions

πŸ” API Key & Secret

After subscribing, your API Key and Secret will be available in your dashboard. Include them in your request headers:

Authorization: Bearer <YOUR_API_KEY> X-Gameer-Secret: <YOUR_SECRET>

Never share your secret key publicly. You can regenerate it anytime.

πŸš€ Install via CLI

npx create-gameer-app my-game cd my-game npm install npm run dev

πŸ“¦ Manual Install

npm install gameer-sdk

This provides local schema validation, utilities, and the full codegen interface.

πŸ“ Folder Structure

/game
  β”œβ”€β”€ schema/
  β”‚   └── game.json
  β”œβ”€β”€ assets/
  β”œβ”€β”€ public/
  └── src/
      └── game/
          └── ...