Charlez91
Charlez91
Use asynchronous task queues or workers like celery and redis/rabbitmq to run the task or you perform multithreading for parallel execution
Schedule has something like a Memory which stores jobs so it can run dem at said time. So in ur code before the new job do Schedule.clear() Then Run your...
The schedule.clear clears any previous job in the schedule 'memory'
Run it like dis schedule.every(30).seconds.do(run_threaded, faces=num_faces)
What you can do is to run the command with `npx typeorm-ts-node-commonjs migration:generate src/migration/initial -d src/data-source.ts`. In your code if u using typeorm above 0.3 a path should be added...