Metadata-Version: 2.1
Name: crono
Version: 0.1.0
Summary: Programmatic time-based job scheduler
Home-page: https://github.com/gduverger/crono
Author: Georges Duverger
Author-email: georges.duverger@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Requires-Python: >=3
Description-Content-Type: text/markdown

# Crono

## Environmental variables

	REDIS_MAX_CONNECTIONS (default: 20)	
	CELERY_BROKER
	CELERY_RESULT_BACKEND
	CELERY_BROKER_POOL_LIMIT (default: 0)
	CELERY_TASK_IGNORE_RESULT (default: True)
	CELERY_BEAT_MAX_LOOP_INTERVAL (default: 300)
	CELERY_WORKER_MAX_TASKS_PER_CHILD (default: 100)

## How to start

	redis-server &
	celery worker --app=crono.queue:queue --hostname=worker1@%h --loglevel=DEBUG
	celery beat --app=crono.queue:queue --loglevel=DEBUG

## How to stop

	redis-cli flushall
	redis-cli shutdown

## How to test

	python -m pytest

## Runtime

	python-3.7


