Production Tested Templates
Developer Starter Templates
Jumpstart your infrastructure, databases, and pipelines with zero-dependency verified configurations. Fork any snippet directly into your workspace.
nginx
Verified Starter
Nginx Reverse Proxy with SSL & Security Headers
Production-ready reverse proxy with TLS 1.3, Brotli, and strict security headers.
# Production Nginx Reverse Proxy Configuration
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name api.example.com;
# SSL Certificates & Modern Ciphers
ssl_certificate...
yaml
Verified Starter
Docker Compose Production Web Stack
Full-stack production docker-compose with web app, Postgres, and Redis.
version: '3.8'
services:
web:
build: .
restart: always
environment:
NODE_ENV: production
DATABASE_URL: ${DATABASE_URL}
REDIS_URL: ${REDIS_URL}
ports:
- "3000:3000"
depends_on:
- db
- redis
...
sql
Verified Starter
High-Performance SQLite Production PRAGMAs
Maximum performance SQLite pragmas for WAL mode, concurrency, and memory buffers.
-- High-Performance Concurrent SQLite Configuration
-- Run immediately after opening database connection
-- 1. Enable Write-Ahead Logging (concurrent readers + writer)
PRAGMA journal_mode = WAL;
-- 2. Synchronous NORMAL is safe in WAL mode and...
html
Verified Starter
Modern HTML5 Responsive Boilerplate
Zero-dependency responsive boilerplate with system fonts, dark mode, and mobile support.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Web Application</title>
<meta name="description" content="Lightweight modern responsive HTML5...
yaml
Verified Starter
GitHub Actions Node.js CI/CD Matrix Pipeline
Multi-stage GitHub Actions matrix CI/CD pipeline with Node.js and cache.
name: CI/CD Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout Code
...