Build simple internal tools. No servers required.
Street Apps lets anyone in the company create and share simple web tools. Create a folder, add some HTML, and your app is live — protected by Google sign-in so only our team can access it.
Your app will be available at: your-app-name.spectre.cool
Pick a short, descriptive name using lowercase letters, numbers, and hyphens.
Good expense-tracker meeting-rooms sales-dashboard
Bad My App test 2024-tracker
In GitHub, navigate to the apps folder and create a new file:
apps/your-app-name/index.html
This creates both the folder and your main file at once.
Paste in your content. Start with this template:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My App</title>
</head>
<body>
<h1>Hello!</h1>
<p>Your content here.</p>
</body>
</html>
Click "Commit changes" and wait about 2 minutes. Your app will be live at:
https://your-app-name.spectre.cool
Anything that runs in a browser:
No build step needed — just add a <script> tag:
Give your AI this context so it understands the setup:
I'm building a tool for street-apps, an internal platform hosted on Cloudflare Pages. The constraints are:
Then describe what you want to build. The AI will know to use CDN-hosted libraries, avoid build tools, and keep things static.
Your app folder name must:
--)www, api, admin, mail, test, staging, devCheck out hello-world.spectre.cool for a simple working example with interactive JavaScript.