Sub-skill of dash: Gunicorn Production Server (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill gunicorn-production-server --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Gunicorn Production Server?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-gunicorn-production-server)More formats (shields.io, HTML) on the badges page.
---
name: dash-gunicorn-production-server
description: 'Sub-skill of dash: Gunicorn Production Server (+2).'
version: 1.0.0
category: data-analysis
type: reference
scripts_exempt: true
---
# Gunicorn Production Server (+2)
## Gunicorn Production Server
```python
# wsgi.py
from app import app
server = app.server
if __name__ == "__main__":
server.run()
```
```bash
# Run with Gunicorn
gunicorn wsgi:server -b 0.0.0.0:8050 -w 4
```
## Docker Deployment
```dockerfile
# Dockerfile
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
*See sub-skills for full details.*
## Cloud Deployment (Heroku)
```txt
# Procfile
web: gunicorn wsgi:server
# requirements.txt
dash>=2.14.0
dash-bootstrap-components>=1.5.0
plotly>=5.18.0
pandas>=2.0.0
gunicorn>=21.0.0
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.