Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion blueprints/wupnext/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ version: "3.8"

services:
wupnext:
image: docker.io/javierlnmn/wupnext:latest
image: docker.io/javierlnmn/wupnext:0.3.0
restart: unless-stopped
environment:
SECRET_KEY: ${SECRET_KEY}
DEBUG: "False"
ALLOWED_HOSTS: ${ALLOWED_HOSTS}
CSRF_TRUSTED_ORIGINS: ${CSRF_TRUSTED_ORIGINS}
# Public base URL, used for links in emails
SITE_URL: ${SITE_URL}
# Public origin the MCP server advertises to clients during discovery
MCP_BASE_URL: ${MCP_BASE_URL}
EMAIL_BACKEND: anymail.backends.resend.EmailBackend
DEFAULT_FROM_EMAIL: ${DEFAULT_FROM_EMAIL}
RESEND_API_KEY: ${RESEND_API_KEY}
Expand All @@ -31,9 +35,14 @@ services:
DEBUG: "False"
ALLOWED_HOSTS: ${ALLOWED_HOSTS}
CSRF_TRUSTED_ORIGINS: ${CSRF_TRUSTED_ORIGINS}
SITE_URL: ${SITE_URL}
EMAIL_BACKEND: anymail.backends.resend.EmailBackend
DEFAULT_FROM_EMAIL: ${DEFAULT_FROM_EMAIL}
RESEND_API_KEY: ${RESEND_API_KEY}
# Django Q2 cluster (ORM broker, no Redis)
Q_WORKERS: ${Q_WORKERS}
Q_TIMEOUT: ${Q_TIMEOUT}
Q_RETRY: ${Q_RETRY}
volumes:
- wupnext-db:/app/db
depends_on:
Expand Down
3 changes: 2 additions & 1 deletion blueprints/wupnext/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "wupnext",
"name": "WupNext",
"version": "latest",
"description": "WupNext is a self-hosted to-do and task queue app: groups, subtasks, deadlines, a built-in pomodoro timer, and daily email reminders. Server-rendered Django with HTMX, backed by SQLite.",
"description": "WupNext is a self-hosted to-do and task queue app: groups, subtasks, deadlines, a built-in pomodoro timer, email reminders, and an MCP server so an AI client can work the board. Server-rendered Django with HTMX, backed by SQLite.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/javierlnmn/wupnext",
Expand All @@ -14,6 +14,7 @@
"tasks",
"productivity",
"pomodoro",
"mcp",
"django",
"self-hosted"
]
Expand Down
7 changes: 6 additions & 1 deletion blueprints/wupnext/template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ env = [
"SECRET_KEY=${secret_key}",
"ALLOWED_HOSTS=${main_domain}",
"CSRF_TRUSTED_ORIGINS=https://${main_domain}",
"SITE_URL=https://${main_domain}",
"MCP_BASE_URL=https://${main_domain}",
"DEFAULT_FROM_EMAIL=${from_email}",
"RESEND_API_KEY=${resend_api_key}",
"DJANGO_SUPERUSER_USERNAME=${admin_username}",
"DJANGO_SUPERUSER_EMAIL=${admin_email}",
"DJANGO_SUPERUSER_PASSWORD=${admin_password}"
"DJANGO_SUPERUSER_PASSWORD=${admin_password}",
"Q_WORKERS=2",
"Q_TIMEOUT=60",
"Q_RETRY=120"
]
mounts = []

Expand Down
Loading