一。官方介绍
A beautiful, modern productivity app that combines task management with Pomodoro timer functionality, habit tracking, and real-time collaboration. Built with Next.js, React, and Framer Motion for smooth animations and premium user experience.
一个漂亮、现代的高效能应用,将任务管理与番茄钟功能、习惯追踪和实时协作相结合。使用Next.js、React和 Framer Motion构建,以实现流畅的动画和高级的用户体验。
二。项目部署
version: '3.8'
services:
priospace:
image: stmoonar/priospace
container_name: priospace
ports:
- "3090:3000"
environment:
- NODE_ENV=production
- BACKUP_DIR=/app/data/backups
- NEXT_PUBLIC_ENABLE_SERVER_BACKUP=true
volumes:
# Data persistence using local directory (easy to access and backup)
- ./data:/app/data
restart: unless-stopped
network_mode: bridge
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
评论区