mikeTWC1984

Results 151 comments of mikeTWC1984

I've been experimenting with this for a while. That extra schedule option could look like this: ![image](https://user-images.githubusercontent.com/31977106/111893328-61b31680-89d8-11eb-812b-e13d06a14fd2.png) If you are using uneven schedules frequently you can [try it out](https://github.com/cronicle-edge/cronicle-edge). Although...

Yes, it's the same thing as Cronicle 0.8.56, just with few extra api/ui elements and some minimal refactoring. You can use output of ```storage-cli.js export``` to import jobs from classic...

I think you can copy data/logs to import run history/activity log, and data/jobs to import actual job logs (whatever you see on Job Details page). As I mentioned you can...

You need to apply changes to _combo.css after you installed/setup cronicle. No need to restart it cronilce, but browser may cache original version (especially chrome).

all UI is based on those files (once cronicle is set up) htdocs/css/_combo.css htdocs/js/_combo.js I'd recommend to move .gz files to prevent caching

So does that dropdown gives you what you need? Default timezone just comes from system setting. In containers I just use TZ env variable to set desired timezone. Btw, are...

OK. On UI it comes from the browser indeed. It's stored in app.tz property, so if you up to dirty tweaks you can even force it to has a specific...

Do you need this for initial deployment, when you set up manager and all workers, or you mean adding new workers later on? For initial setup I guess you can...

I guess it's a good idea to have env variable for that purpose. However the PR you propose will brig a braking change because you are removing job info. I...

Whoever needs this functionality, you can add the line below in the begging of the callback on url-plugin.js: ```js job.env = Tools.mergeHashes(process.env, job.env); ```