URL for AI
Share this URL with your AI to generate Blue-ready app code. All runtime specs are on one page.
Blue is a platform that lets AI-generated apps go live instantly. Let your AI choose a runtime (static / python / node / php), generate the code, and deploy via ZIP upload or API.
Share this URL with your AI to generate Blue-ready app code. All runtime specs are on one page.
ChatGPT, Claude, and Gemini chat interfaces restrict outbound HTTP requests, so POST /deploy direct deployment is not available from these tools. Use them for code generation only, then ZIP the files and upload via Console.
Recommended tools: AI tools with local execution environments such as Codex and Claude Code can deploy directly using an API key.
Bundle the generated files into a ZIP and upload via Console, or use an API key with POST /deploy for direct deployment.
Best for landing pages, portfolios, mini games, and color pickers that should deploy quickly.
FILE: index.html ```html ... ``` FILE: style.css ```css ... ``` FILE: script.js ```javascript ... ```
Best for small Python checkers such as an IP viewer, request inspector, or utility app.
FILE: app.py ```python ... ``` FILE: requirements.txt ```text ... ```
Best for small utility apps, palette tools, and simple UIs with a light API.
FILE: package.json ```json ... ``` FILE: server.js ```javascript ... ```
Best for simple forms, sessions, utility pages, and lightweight boards in PHP.
FILE: index.php ```php ... ``` FILE: style.css ```css ... ```