flask-crontab
flask-crontab copied to clipboard
Simple Flask scheduled tasks without extra daemons
For docker environments, it would not be common to run a cron in the same container as the main application process. For those or similar use cases it would be...
I changed my show() method print line to be: print( "{} @{} -> {}".format( job_hash, sched, self.__get_job_by_hash(job_hash).func_ident ) It works ok. Just an FYI
Right now, the configuration only allows to adjust the following two parameters: | Config item | Description | Default value | | ------------------ | ------------------------------ | ------------------ | | CRONTAB_EXECUTABLE...
It would be really helpful if I can register cronjobs without the need to execute `flask cronjob add`. This step prevents me from easily incorporating your seemingly easy to use...
When passing apllication factory to FLASK_APP, i.e. FLASK_APP=app:create_app(), cron fails. Environment: `FLASK_APP=app:create_app()` Crontab command created: `cd && FLASK_APP=app:create_app() /bin/python -m flask crontab run 4cee55ee21b006de06c75e2c2f469f81` Expected output: Command should excecute Error:...