โ๏ธ Setup & Install
Install Gameer SDK and authenticate with your API key to start generating games from your schema.
๐ 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/ โโโ ...