Skip to content

Latest commit

ย 

History

46 ๆไบค

Folders and files

NameName
Last commit message
Last commit date
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

ไป“ๅบ“ files navigation

๐Ÿš€ Dev Launchpad

The ultimate developer productivity toolkit. Scripts, templates, prompts, and curated toolsโ€”all in one place.

Stars ๅคๅˆปs License PRs Welcome

๐Ÿš€ Quick Start โ€ข ๐Ÿ“ Structure โ€ข ๐Ÿ“– Docs โ€ข ๐Ÿค Contribute


๐ŸŽฏ What is this?

Dev Launchpad is a curated collection of battle-tested developer resources designed to eliminate repetitive setup work and accelerate your workflow. Whether you're spinning up a new project, debugging production issues, or standardizing your team's code review processโ€”this toolkit has you covered.

Think of it as your developer Swiss Army knife: always there when you need it, surprisingly comprehensive, and constantly improving thanks to community contributions.

What's inside?

Category Contents Best For
๐Ÿ› ๏ธ Scripts 25+ CLI automations (Git, Docker, NPM, Linux) Daily devops tasks
๐Ÿ“ฆ Templates Production-ready starters (Node, Python, Next.js, FastAPI, React) ๆ–ฐๅปบ projects in < 60 seconds
๐Ÿค– Prompts 30+ AI prompts for coding tasks Pair programming with AI
โœ… Checklists Review & deployment checklists Quality assurance
๐Ÿ”ง Tools Curated lists by category Discovering the right tool for the job

๐Ÿ’ก Why use it?

Stop reinventing the wheel

Every developer has a ~/scripts folder full of one-off hacks. We've collected, tested, and standardized the best onesโ€”so you don't have to.

Ship faster

Our templates aren't "hello world" demos. They include testing, linting, CI/CD configs, and security best practices from day one.

Code with confidence

Review checklists used by teams at scale. AI prompts refined through thousands of real-world coding sessions.

Community-driven

This isn't a personal dotfiles repo. It's a living resource maintained by developers who actually use these tools daily.

"I used to spend 2 hours setting up a new FastAPI project. Now it's 30 seconds and I'm writing actual business logic."
โ€” Early contributor


๐Ÿ“ Folder Structure

dev-launchpad/
โ”œโ”€โ”€ ๐Ÿ“œ scripts/          # CLI automations
โ”‚   โ”œโ”€โ”€ git/            # Sync forks, cleanup branches, commit helpers
โ”‚   โ”œโ”€โ”€ docker/         # Cleanup, dev envs, volume backups
โ”‚   โ”œโ”€โ”€ npm/            # Dependency management, publishing
โ”‚   โ””โ”€โ”€ linux/          # System utilities, SSH, monitoring
โ”‚
โ”œโ”€โ”€ ๐Ÿ“ฆ templates/        # Project starters
โ”‚   โ”œโ”€โ”€ nodejs/         # Express + Jest + ESLint
โ”‚   โ”œโ”€โ”€ python/         # Modern packaging with pyproject.toml
โ”‚   โ”œโ”€โ”€ nextjs/         # App Router + Tailwind + TypeScript
โ”‚   โ”œโ”€โ”€ fastapi/        # Async SQL + Alembic + Docker
โ”‚   โ””โ”€โ”€ react/          # Vite + modern hooks setup
โ”‚
โ”œโ”€โ”€ ๐Ÿค– prompts/          # AI prompt library
โ”‚   โ”œโ”€โ”€ debug/          # Error analysis, stack traces, memory leaks
โ”‚   โ”œโ”€โ”€ refactor/       # Clean code, TypeScript migration
โ”‚   โ”œโ”€โ”€ review/         # ๅฎ‰ๅ…จ audits, architecture review
โ”‚   โ”œโ”€โ”€ explain/        # Complex logic breakdown
โ”‚   โ”œโ”€โ”€ optimize/       # Query optimization, bundle size
โ”‚   โ””โ”€โ”€ generate/       # Tests, docs, API scaffolding
โ”‚
โ”œโ”€โ”€ โœ… checklists/       # Process standardization
โ”‚   โ”œโ”€โ”€ code-review/    # Frontend, backend, fullstack
โ”‚   โ”œโ”€โ”€ deployment/     # Pre-deploy, rollback procedures
โ”‚   โ”œโ”€โ”€ security/       # Auth, secrets, dependency audit
โ”‚   โ””โ”€โ”€ performance/    # Optimization, load testing
โ”‚
โ”œโ”€โ”€ ๐Ÿ”ง tools/            # Curated tool directories
โ”‚   โ”œโ”€โ”€ development/    # Editors, terminals, version control
โ”‚   โ”œโ”€โ”€ frontend/       # Frameworks, build tools, testing
โ”‚   โ”œโ”€โ”€ backend/        # Runtimes, databases, message queues
โ”‚   โ”œโ”€โ”€ devops/         # CI/CD, containers, IaC
โ”‚   โ”œโ”€โ”€ design/         # UI tools, prototyping, assets
โ”‚   โ”œโ”€โ”€ productivity/   # Note-taking, API clients, docs
โ”‚   โ””โ”€โ”€ ai-ml/          # Model platforms, vector DBs, coding assistants
โ”‚
โ””โ”€โ”€ ๐Ÿ“– docs/             # Comprehensive guides
    โ”œโ”€โ”€ guides/         # Getting started, customization
    โ”œโ”€โ”€ contributing/   # Setup, PR guidelines
    โ”œโ”€โ”€ roadmap/        # Quarterly plans, long-term vision
    โ””โ”€โ”€ faq/            # Troubleshooting, common questions

๐Ÿš€ Quick Start

Option 1: Clone and explore

git clone https://github.com/ashish7802/dev-launchpad.git
cd dev-launchpad

Option 2: Use specific components

# Copy just the template you need
cp -r dev-launchpad/templates/fastapi ./my-new-api

Option 3: Symlink for regular use

# Add scripts to your PATH without copying
ln -s $(pwd)/dev-launchpad/scripts/git/* ~/.local/bin/

๐Ÿ› ๏ธ How to Use

Scripts

All scripts are self-documenting. Run with --help or no arguments:

./scripts/git/git-cleanup-branches.sh --help

Pro tip: Many scripts support --dry-run to preview changes before execution.

Templates

Each template is production-ready out of the box:

  • โœ… Testing framework configured
  • โœ… Linting & formatting rules
  • โœ… Git hooks for quality gates
  • โœ… GitHub ๆ“ไฝœ CI template
  • โœ… ๅฎ‰ๅ…จ best practices

Prompts

Copy โ†’ Paste into ChatGPT/Claude/Copilot โ†’ Replace [BRACKETED] variables.

Checklists

Use as GitHub task lists, Notion pages, or printed runbooks.


๐Ÿค Contributing

We welcome contributions from developers of all levels.

Skill Level Contribution
Beginner Fix typos, improve docs, add tool descriptions
Intermediate ๆ–ฐๅปบ shell scripts, template improvements, prompt refinements
Advanced ๆ–ฐๅปบ template categories, CI/CD enhancements, architecture decisions

First time contributing? Check out issues labeled good first issue.


๐Ÿ—บ๏ธ Roadmap

Near Term

  • Add Rust and Go templates
  • Kubernetes scripts collection
  • VS Code extension for prompt snippets

Later

  • Web interface for browsing templates
  • AI prompt versioning system
  • Community ratings for tools and prompts

๐Ÿ“œ License

MIT License โ€” see LICENSE for details. Commercial use welcome.


Made with โค๏ธ by the Ashish Yadav

โญ Star this repo if it saved you time.

Built by developers, for developers.

ๅ…ณไบŽ

๐Ÿš€ Ultimate developer toolkit โ€” 300+ CLI scripts, project templates, AI prompts, checklists & 2000+ curated tools. Everything a dev needs, in one repo.

Topics

Resources

Stars

3 stars

ๅ…ณๆณจ่€…

0 watching

ๅคๅˆปs

ๅ‘ๅธƒ

ๅŒ…

่ดก็Œฎ่€…

Languages