Files
NexaDash/apps/worker/package.json
T
nessi d694c8b8e3 Add project scaffolding and documentation
Add .env.example with configuration for database, Redis, security, SMTP, workers, and plugins. Add .gitignore for Python, Node.js, Next.js, Docker volumes, and IDE files. Add MIT License. Update README.md with feature overview, quick start guide, architecture description, plugin system documentation, security details, backup/restore instructions, and developer setup. Add Alembic configuration files and placeholder directories for API, web, worker, and plugin components
2026-06-21 09:31:47 +02:00

11 lines
292 B
JSON

{
"name": "@nexadash/worker",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "celery -A apps.worker.src.celery_app worker -l info",
"dev": "celery -A apps.worker.src.celery_app worker -l info",
"beat": "celery -A apps.worker.src.celery_app beat -l info"
}
}