PromptURLs is a full-stack web app to generate ready-to-open prompt links for major AI providers from a single prompt.
It currently supports:
- ChatGPT
- Claude
- Gemini (Google)
- Grok
- Frontend: Next.js 16, React 19, TypeScript, Tailwind CSS
- Backend: Fastify, TypeScript, Drizzle ORM, PostgreSQL
PromptURLs/
|- frontend/ # Next.js client app (port 5173 in dev)
|- backend/ # Fastify API + Drizzle + PostgreSQL
- Generate provider-specific prompt URLs from one input
- Open or copy generated links quickly
- Prompt history stored in browser local storage
- Persistent user/prompt metadata in PostgreSQL
- Model request form (
/api/root/request) for new provider/model support
git clone <your-repo-url>
cd PromptURLsCreate backend/.env:
PORT=3000
DATABASE_URL=postgresql://<user>:<password>@<host>:<port>/<db>
DEV_URL=http://localhost:5173
PRO_URL=https://your-frontend-domain.comBackend (pnpm):
cd backend
pnpm installFrontend (npm):
cd ../frontend
npm installcd ../backend
pnpm migrateBackend:
cd backend
pnpm devFrontend (new terminal):
cd frontend
npm run devApp URLs:
- Frontend:
http://localhost:5173 - Backend health:
http://localhost:3000/
If your backend is not running on http://localhost:3000, create frontend/.env.local:
NEXT_PUBLIC_BACKEND_URL=http://localhost:3000GET /-> health checkGET /api/root-> root API checkPOST /api/root/generate-> generate prompt URLsPOST /api/root/request-> submit model/provider request
Contributions are welcome and appreciated.
If you want to contribute:
- Fork the repo
- Create a feature branch (
git checkout -b feature/your-feature) - Make your changes with clear commits
- Open a pull request with context, screenshots (if UI changes), and testing notes
Please keep changes focused, typed, and aligned with the existing code style.
If you want to collaborate on PromptURLs (features, design, backend improvements, integrations, or scaling), open an issue or start a discussion in this repository.
You can also connect directly:
- LinkedIn: https://www.linkedin.com/in/devershdixit/
- GitHub: https://github.com/devdixit-dev