├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── docker-hub.yaml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── .well-known └── funding-manifest-urls ├── Dockerfile ├── Dockerfile.dev ├── LICENSE.md ├── README.md ├── RELEASE_NOTES.md ├── SPONSORS.md ├── __tests__ ├── __snapshots__ │ └── crontab.test.ts.snap ├── batchJobs.test.ts ├── cron-timing.test.ts ├── cron.test.ts ├── cronMatcher.test.ts ├── crontab.test.ts ├── events.test.ts ├── fixtures-esm │ ├── blah.js │ ├── package.json │ ├── tasks │ │ ├── wouldyoulike.js │ │ └── wouldyoulike_default.js │ ├── tasksFile.js │ └── tasksFile_default.js ├── fixtures │ ├── blah.js │ ├── tasks │ │ ├── wouldyoulike.js │ │ ├── wouldyoulike_default.js │ │ └── wouldyoulike_ts.js │ ├── tasksFile-ts.js │ ├── tasksFile.js │ ├── tasksFile_default-ts.js │ └── tasksFile_default.js ├── forbiddenFlags.test.ts ├── getTasks.test.ts ├── helpers.ts ├── jobsView.test.ts ├── main.runTaskList.test.ts ├── main.runTaskListOnce.test.ts ├── migrate.test.ts ├── nodeEnvironment.js ├── nodeTime.test.ts ├── reset-db.sql ├── resetLockedAt.test.ts ├── runner.helpers.getTaskName.test.ts ├── runner.runOnce.test.ts ├── schema.sql ├── workerUtils.addJob.test.ts ├── workerUtils.addJobs.test.ts ├── workerUtils.cleanup.test.ts ├── workerUtils.completeJobs.test.ts ├── workerUtils.forceUnlockWorkers.test.ts ├── workerUtils.permanentlyFailJobs.test.ts └── workerUtils.rescheduleJobs.test.ts ├── docker-compose.yml ├── examples ├── README.md ├── readme │ ├── README.md │ ├── events.js │ └── tasks │ │ └── task_2.js ├── worker-bullmq-exporter │ ├── README.md │ └── tasks │ │ └── bullmq-exporter.js ├── worker-cloud-tasks-exporter │ ├── README.md │ └── tasks │ │ └── cloud-tasks-exporter.js └── worker-faktory-exporter │ ├── README.md │ └── tasks │ └── faktory-exporter.js ├── graphile.config.ts ├── jest.config.js ├── package.json ├── perfTest ├── b.js ├── graphile.config.js ├── init.js ├── latencyTest.js ├── n.js ├── recreateDb.js ├── run.js ├── tasks │ ├── charm.js │ ├── cyclic-require.js │ ├── log_if_999.js │ ├── log_payload.js │ ├── nested │ │ └── folder │ │ │ ├── python.py │ │ │ ├── test-cjs.cjs │ │ │ ├── test-mjs.mjs │ │ │ ├── test-mts.mts │ │ │ └── test.js │ ├── stuck.js │ └── wait.js └── types.d.ts ├── scripts ├── buildSqlModule.mjs ├── dump_db ├── options.mjs ├── postversion.mjs └── setup_template_db.sh ├── sql ├── 000001.sql ├── 000002.sql ├── 000003.sql ├── 000004.sql ├── 000005.sql ├── 000006.sql ├── 000007.sql ├── 000008.sql ├── 000009.sql ├── 000010.sql ├── 000011.sql ├── 000012.sql ├── 000013.sql ├── 000014.sql ├── 000015.sql ├── 000016.sql ├── 000017.sql ├── 000018.sql └── 000019.sql ├── src ├── cleanup.ts ├── cli.ts ├── config.ts ├── cron.ts ├── cronConstants.ts ├── cronMatcher.ts ├── crontab.ts ├── deferred.ts ├── fs.ts ├── generated │ └── sql.ts ├── getCronItems.ts ├── getTasks.ts ├── helpers.ts ├── index.ts ├── interfaces.ts ├── lib.ts ├── localQueue.ts ├── logger.ts ├── main.ts ├── migrate.ts ├── plugins │ ├── LoadTaskFromExecutableFilePlugin.ts │ └── LoadTaskFromJsPlugin.ts ├── preset.ts ├── runner.ts ├── signals.ts ├── sql │ ├── completeJobs.ts │ ├── failJobs.ts │ ├── getJobs.ts │ ├── getQueueNames.ts │ ├── resetLockedAt.ts │ └── returnJobs.ts ├── taskIdentifiers.ts ├── version.ts ├── worker.ts └── workerUtils.ts ├── towerDefence ├── README.md ├── crontab ├── graphile.config.mjs ├── run.mjs └── tasks │ └── log_if_999.js ├── tsconfig.json ├── website ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── admin-functions.md │ ├── cli │ │ ├── index.md │ │ └── run.md │ ├── config.md │ ├── connection-string.md │ ├── contributing.md │ ├── cron.md │ ├── docker.md │ ├── error-handling.md │ ├── exponential-backoff.md │ ├── faq.md │ ├── forbidden-flags.md │ ├── glossary.md │ ├── index.md │ ├── installation.md │ ├── job-key.md │ ├── jobs-view.md │ ├── library │ │ ├── add-job.md │ │ ├── add-jobs.md │ │ ├── index.md │ │ ├── logger.md │ │ ├── queue.md │ │ └── run.md │ ├── performance.md │ ├── pro │ │ ├── config.md │ │ ├── index.md │ │ ├── migration.md │ │ └── recovery.md │ ├── project-status.md │ ├── requirements.md │ ├── scaling.md │ ├── schema.md │ ├── sql-add-job.md │ ├── support.md │ ├── tasks.md │ ├── techniques.md │ ├── typescript.md │ ├── uninstall.md │ └── worker-events.md ├── docusaurus.config.js ├── news │ └── 2023-12-11-016-release.mdx ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── CalloutSection │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── HomepageTestimonials │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── SecondarySection │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Sponsor │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── SponsorButtons │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Sponsors │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ └── TertiarySection │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── contexts │ │ └── sponsor.js │ ├── css │ │ ├── common.module.css │ │ └── custom.css │ ├── pages │ │ ├── errors │ │ │ └── peh.md │ │ ├── index.js │ │ ├── index.module.css │ │ ├── pricing.mdx │ │ ├── pricing.module.css │ │ ├── releases.mdx │ │ └── sponsors.mdx │ └── theme │ │ ├── Footer │ │ ├── index.js │ │ └── index.module.css │ │ └── MDXComponents.jsx └── static │ ├── .nojekyll │ ├── .well-known │ └── funding-manifest-urls │ ├── CNAME │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── img │ ├── convert.js │ ├── homepage │ │ ├── ant-branch.svg │ │ ├── ant-footer.svg │ │ ├── ant-leaf.svg │ │ ├── cron-jobs.svg │ │ ├── grafast.svg │ │ ├── job-control.svg │ │ ├── latency.svg │ │ ├── migration.svg │ │ ├── performance.svg │ │ ├── reliable.svg │ │ ├── starter.svg │ │ └── support.svg │ ├── logo.optimized.svg │ ├── logo.png │ ├── logo.svg │ ├── news │ │ ├── 2023-11-29-assumptions.jpg │ │ ├── 2023-11-29-graphile-logos.svg │ │ └── ant-heart.svg │ └── testimonials │ │ ├── discord.png │ │ ├── news.png │ │ └── reddit.png │ └── site.webmanifest └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | Dockerfile -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Benjie 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-hub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/.github/workflows/docker-hub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- 1 | https://www.graphile.org/funding.json 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /SPONSORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/SPONSORS.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/crontab.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/__snapshots__/crontab.test.ts.snap -------------------------------------------------------------------------------- /__tests__/batchJobs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/batchJobs.test.ts -------------------------------------------------------------------------------- /__tests__/cron-timing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/cron-timing.test.ts -------------------------------------------------------------------------------- /__tests__/cron.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/cron.test.ts -------------------------------------------------------------------------------- /__tests__/cronMatcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/cronMatcher.test.ts -------------------------------------------------------------------------------- /__tests__/crontab.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/crontab.test.ts -------------------------------------------------------------------------------- /__tests__/events.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/events.test.ts -------------------------------------------------------------------------------- /__tests__/fixtures-esm/blah.js: -------------------------------------------------------------------------------- 1 | export const rand = () => 100 * Math.random(); 2 | -------------------------------------------------------------------------------- /__tests__/fixtures-esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /__tests__/fixtures-esm/tasks/wouldyoulike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures-esm/tasks/wouldyoulike.js -------------------------------------------------------------------------------- /__tests__/fixtures-esm/tasks/wouldyoulike_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures-esm/tasks/wouldyoulike_default.js -------------------------------------------------------------------------------- /__tests__/fixtures-esm/tasksFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures-esm/tasksFile.js -------------------------------------------------------------------------------- /__tests__/fixtures-esm/tasksFile_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures-esm/tasksFile_default.js -------------------------------------------------------------------------------- /__tests__/fixtures/blah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures/blah.js -------------------------------------------------------------------------------- /__tests__/fixtures/tasks/wouldyoulike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures/tasks/wouldyoulike.js -------------------------------------------------------------------------------- /__tests__/fixtures/tasks/wouldyoulike_default.js: -------------------------------------------------------------------------------- 1 | exports.default = () => "some more sausages"; 2 | -------------------------------------------------------------------------------- /__tests__/fixtures/tasks/wouldyoulike_ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures/tasks/wouldyoulike_ts.js -------------------------------------------------------------------------------- /__tests__/fixtures/tasksFile-ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures/tasksFile-ts.js -------------------------------------------------------------------------------- /__tests__/fixtures/tasksFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures/tasksFile.js -------------------------------------------------------------------------------- /__tests__/fixtures/tasksFile_default-ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures/tasksFile_default-ts.js -------------------------------------------------------------------------------- /__tests__/fixtures/tasksFile_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/fixtures/tasksFile_default.js -------------------------------------------------------------------------------- /__tests__/forbiddenFlags.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/forbiddenFlags.test.ts -------------------------------------------------------------------------------- /__tests__/getTasks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/getTasks.test.ts -------------------------------------------------------------------------------- /__tests__/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/helpers.ts -------------------------------------------------------------------------------- /__tests__/jobsView.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/jobsView.test.ts -------------------------------------------------------------------------------- /__tests__/main.runTaskList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/main.runTaskList.test.ts -------------------------------------------------------------------------------- /__tests__/main.runTaskListOnce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/main.runTaskListOnce.test.ts -------------------------------------------------------------------------------- /__tests__/migrate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/migrate.test.ts -------------------------------------------------------------------------------- /__tests__/nodeEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/nodeEnvironment.js -------------------------------------------------------------------------------- /__tests__/nodeTime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/nodeTime.test.ts -------------------------------------------------------------------------------- /__tests__/reset-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/reset-db.sql -------------------------------------------------------------------------------- /__tests__/resetLockedAt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/resetLockedAt.test.ts -------------------------------------------------------------------------------- /__tests__/runner.helpers.getTaskName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/runner.helpers.getTaskName.test.ts -------------------------------------------------------------------------------- /__tests__/runner.runOnce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/runner.runOnce.test.ts -------------------------------------------------------------------------------- /__tests__/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/schema.sql -------------------------------------------------------------------------------- /__tests__/workerUtils.addJob.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/workerUtils.addJob.test.ts -------------------------------------------------------------------------------- /__tests__/workerUtils.addJobs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/workerUtils.addJobs.test.ts -------------------------------------------------------------------------------- /__tests__/workerUtils.cleanup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/workerUtils.cleanup.test.ts -------------------------------------------------------------------------------- /__tests__/workerUtils.completeJobs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/workerUtils.completeJobs.test.ts -------------------------------------------------------------------------------- /__tests__/workerUtils.forceUnlockWorkers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/workerUtils.forceUnlockWorkers.test.ts -------------------------------------------------------------------------------- /__tests__/workerUtils.permanentlyFailJobs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/workerUtils.permanentlyFailJobs.test.ts -------------------------------------------------------------------------------- /__tests__/workerUtils.rescheduleJobs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/__tests__/workerUtils.rescheduleJobs.test.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/readme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/readme/README.md -------------------------------------------------------------------------------- /examples/readme/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/readme/events.js -------------------------------------------------------------------------------- /examples/readme/tasks/task_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/readme/tasks/task_2.js -------------------------------------------------------------------------------- /examples/worker-bullmq-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/worker-bullmq-exporter/README.md -------------------------------------------------------------------------------- /examples/worker-bullmq-exporter/tasks/bullmq-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/worker-bullmq-exporter/tasks/bullmq-exporter.js -------------------------------------------------------------------------------- /examples/worker-cloud-tasks-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/worker-cloud-tasks-exporter/README.md -------------------------------------------------------------------------------- /examples/worker-cloud-tasks-exporter/tasks/cloud-tasks-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/worker-cloud-tasks-exporter/tasks/cloud-tasks-exporter.js -------------------------------------------------------------------------------- /examples/worker-faktory-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/worker-faktory-exporter/README.md -------------------------------------------------------------------------------- /examples/worker-faktory-exporter/tasks/faktory-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/examples/worker-faktory-exporter/tasks/faktory-exporter.js -------------------------------------------------------------------------------- /graphile.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/graphile.config.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/package.json -------------------------------------------------------------------------------- /perfTest/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/b.js -------------------------------------------------------------------------------- /perfTest/graphile.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/graphile.config.js -------------------------------------------------------------------------------- /perfTest/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/init.js -------------------------------------------------------------------------------- /perfTest/latencyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/latencyTest.js -------------------------------------------------------------------------------- /perfTest/n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/n.js -------------------------------------------------------------------------------- /perfTest/recreateDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/recreateDb.js -------------------------------------------------------------------------------- /perfTest/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/run.js -------------------------------------------------------------------------------- /perfTest/tasks/charm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/charm.js -------------------------------------------------------------------------------- /perfTest/tasks/cyclic-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/cyclic-require.js -------------------------------------------------------------------------------- /perfTest/tasks/log_if_999.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/log_if_999.js -------------------------------------------------------------------------------- /perfTest/tasks/log_payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/log_payload.js -------------------------------------------------------------------------------- /perfTest/tasks/nested/folder/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/nested/folder/python.py -------------------------------------------------------------------------------- /perfTest/tasks/nested/folder/test-cjs.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/nested/folder/test-cjs.cjs -------------------------------------------------------------------------------- /perfTest/tasks/nested/folder/test-mjs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/nested/folder/test-mjs.mjs -------------------------------------------------------------------------------- /perfTest/tasks/nested/folder/test-mts.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/nested/folder/test-mts.mts -------------------------------------------------------------------------------- /perfTest/tasks/nested/folder/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/nested/folder/test.js -------------------------------------------------------------------------------- /perfTest/tasks/stuck.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | console.error("SHOULD NOT RUN - STUCK!"); 3 | }; 4 | -------------------------------------------------------------------------------- /perfTest/tasks/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/tasks/wait.js -------------------------------------------------------------------------------- /perfTest/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/perfTest/types.d.ts -------------------------------------------------------------------------------- /scripts/buildSqlModule.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/scripts/buildSqlModule.mjs -------------------------------------------------------------------------------- /scripts/dump_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/scripts/dump_db -------------------------------------------------------------------------------- /scripts/options.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/scripts/options.mjs -------------------------------------------------------------------------------- /scripts/postversion.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/scripts/postversion.mjs -------------------------------------------------------------------------------- /scripts/setup_template_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/scripts/setup_template_db.sh -------------------------------------------------------------------------------- /sql/000001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000001.sql -------------------------------------------------------------------------------- /sql/000002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000002.sql -------------------------------------------------------------------------------- /sql/000003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000003.sql -------------------------------------------------------------------------------- /sql/000004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000004.sql -------------------------------------------------------------------------------- /sql/000005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000005.sql -------------------------------------------------------------------------------- /sql/000006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000006.sql -------------------------------------------------------------------------------- /sql/000007.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000007.sql -------------------------------------------------------------------------------- /sql/000008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000008.sql -------------------------------------------------------------------------------- /sql/000009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000009.sql -------------------------------------------------------------------------------- /sql/000010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000010.sql -------------------------------------------------------------------------------- /sql/000011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000011.sql -------------------------------------------------------------------------------- /sql/000012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000012.sql -------------------------------------------------------------------------------- /sql/000013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000013.sql -------------------------------------------------------------------------------- /sql/000014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000014.sql -------------------------------------------------------------------------------- /sql/000015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000015.sql -------------------------------------------------------------------------------- /sql/000016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000016.sql -------------------------------------------------------------------------------- /sql/000017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000017.sql -------------------------------------------------------------------------------- /sql/000018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000018.sql -------------------------------------------------------------------------------- /sql/000019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/sql/000019.sql -------------------------------------------------------------------------------- /src/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/cleanup.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/cron.ts -------------------------------------------------------------------------------- /src/cronConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/cronConstants.ts -------------------------------------------------------------------------------- /src/cronMatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/cronMatcher.ts -------------------------------------------------------------------------------- /src/crontab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/crontab.ts -------------------------------------------------------------------------------- /src/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/deferred.ts -------------------------------------------------------------------------------- /src/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/fs.ts -------------------------------------------------------------------------------- /src/generated/sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/generated/sql.ts -------------------------------------------------------------------------------- /src/getCronItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/getCronItems.ts -------------------------------------------------------------------------------- /src/getTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/getTasks.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/lib.ts -------------------------------------------------------------------------------- /src/localQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/localQueue.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/migrate.ts -------------------------------------------------------------------------------- /src/plugins/LoadTaskFromExecutableFilePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/plugins/LoadTaskFromExecutableFilePlugin.ts -------------------------------------------------------------------------------- /src/plugins/LoadTaskFromJsPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/plugins/LoadTaskFromJsPlugin.ts -------------------------------------------------------------------------------- /src/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/preset.ts -------------------------------------------------------------------------------- /src/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/runner.ts -------------------------------------------------------------------------------- /src/signals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/signals.ts -------------------------------------------------------------------------------- /src/sql/completeJobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/sql/completeJobs.ts -------------------------------------------------------------------------------- /src/sql/failJobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/sql/failJobs.ts -------------------------------------------------------------------------------- /src/sql/getJobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/sql/getJobs.ts -------------------------------------------------------------------------------- /src/sql/getQueueNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/sql/getQueueNames.ts -------------------------------------------------------------------------------- /src/sql/resetLockedAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/sql/resetLockedAt.ts -------------------------------------------------------------------------------- /src/sql/returnJobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/sql/returnJobs.ts -------------------------------------------------------------------------------- /src/taskIdentifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/taskIdentifiers.ts -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/version.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/worker.ts -------------------------------------------------------------------------------- /src/workerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/src/workerUtils.ts -------------------------------------------------------------------------------- /towerDefence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/towerDefence/README.md -------------------------------------------------------------------------------- /towerDefence/crontab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /towerDefence/graphile.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/towerDefence/graphile.config.mjs -------------------------------------------------------------------------------- /towerDefence/run.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/towerDefence/run.mjs -------------------------------------------------------------------------------- /towerDefence/tasks/log_if_999.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/towerDefence/tasks/log_if_999.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/admin-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/admin-functions.md -------------------------------------------------------------------------------- /website/docs/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/cli/index.md -------------------------------------------------------------------------------- /website/docs/cli/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/cli/run.md -------------------------------------------------------------------------------- /website/docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/config.md -------------------------------------------------------------------------------- /website/docs/connection-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/connection-string.md -------------------------------------------------------------------------------- /website/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/contributing.md -------------------------------------------------------------------------------- /website/docs/cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/cron.md -------------------------------------------------------------------------------- /website/docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/docker.md -------------------------------------------------------------------------------- /website/docs/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/error-handling.md -------------------------------------------------------------------------------- /website/docs/exponential-backoff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/exponential-backoff.md -------------------------------------------------------------------------------- /website/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/faq.md -------------------------------------------------------------------------------- /website/docs/forbidden-flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/forbidden-flags.md -------------------------------------------------------------------------------- /website/docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/glossary.md -------------------------------------------------------------------------------- /website/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/index.md -------------------------------------------------------------------------------- /website/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/installation.md -------------------------------------------------------------------------------- /website/docs/job-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/job-key.md -------------------------------------------------------------------------------- /website/docs/jobs-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/jobs-view.md -------------------------------------------------------------------------------- /website/docs/library/add-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/library/add-job.md -------------------------------------------------------------------------------- /website/docs/library/add-jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/library/add-jobs.md -------------------------------------------------------------------------------- /website/docs/library/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/library/index.md -------------------------------------------------------------------------------- /website/docs/library/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/library/logger.md -------------------------------------------------------------------------------- /website/docs/library/queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/library/queue.md -------------------------------------------------------------------------------- /website/docs/library/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/library/run.md -------------------------------------------------------------------------------- /website/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/performance.md -------------------------------------------------------------------------------- /website/docs/pro/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/pro/config.md -------------------------------------------------------------------------------- /website/docs/pro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/pro/index.md -------------------------------------------------------------------------------- /website/docs/pro/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/pro/migration.md -------------------------------------------------------------------------------- /website/docs/pro/recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/pro/recovery.md -------------------------------------------------------------------------------- /website/docs/project-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/project-status.md -------------------------------------------------------------------------------- /website/docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/requirements.md -------------------------------------------------------------------------------- /website/docs/scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/scaling.md -------------------------------------------------------------------------------- /website/docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/schema.md -------------------------------------------------------------------------------- /website/docs/sql-add-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/sql-add-job.md -------------------------------------------------------------------------------- /website/docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/support.md -------------------------------------------------------------------------------- /website/docs/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/tasks.md -------------------------------------------------------------------------------- /website/docs/techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/techniques.md -------------------------------------------------------------------------------- /website/docs/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/typescript.md -------------------------------------------------------------------------------- /website/docs/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/uninstall.md -------------------------------------------------------------------------------- /website/docs/worker-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docs/worker-events.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/news/2023-12-11-016-release.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/news/2023-12-11-016-release.mdx -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/components/CalloutSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/CalloutSection/index.js -------------------------------------------------------------------------------- /website/src/components/CalloutSection/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/CalloutSection/styles.module.css -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /website/src/components/HomepageTestimonials/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/HomepageTestimonials/index.js -------------------------------------------------------------------------------- /website/src/components/HomepageTestimonials/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/HomepageTestimonials/styles.module.css -------------------------------------------------------------------------------- /website/src/components/SecondarySection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/SecondarySection/index.js -------------------------------------------------------------------------------- /website/src/components/SecondarySection/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/SecondarySection/styles.module.css -------------------------------------------------------------------------------- /website/src/components/Sponsor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/Sponsor/index.js -------------------------------------------------------------------------------- /website/src/components/Sponsor/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/Sponsor/styles.module.css -------------------------------------------------------------------------------- /website/src/components/SponsorButtons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/SponsorButtons/index.js -------------------------------------------------------------------------------- /website/src/components/SponsorButtons/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/SponsorButtons/styles.module.css -------------------------------------------------------------------------------- /website/src/components/Sponsors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/Sponsors/index.js -------------------------------------------------------------------------------- /website/src/components/Sponsors/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/Sponsors/styles.module.css -------------------------------------------------------------------------------- /website/src/components/TertiarySection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/TertiarySection/index.js -------------------------------------------------------------------------------- /website/src/components/TertiarySection/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/components/TertiarySection/styles.module.css -------------------------------------------------------------------------------- /website/src/contexts/sponsor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/contexts/sponsor.js -------------------------------------------------------------------------------- /website/src/css/common.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/css/common.module.css -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/errors/peh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/pages/errors/peh.md -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/pricing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/pages/pricing.mdx -------------------------------------------------------------------------------- /website/src/pages/pricing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/pages/pricing.module.css -------------------------------------------------------------------------------- /website/src/pages/releases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/pages/releases.mdx -------------------------------------------------------------------------------- /website/src/pages/sponsors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/pages/sponsors.mdx -------------------------------------------------------------------------------- /website/src/theme/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/theme/Footer/index.js -------------------------------------------------------------------------------- /website/src/theme/Footer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/theme/Footer/index.module.css -------------------------------------------------------------------------------- /website/src/theme/MDXComponents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/src/theme/MDXComponents.jsx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- 1 | https://www.graphile.org/funding.json 2 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | worker.graphile.org 2 | -------------------------------------------------------------------------------- /website/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /website/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /website/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/apple-touch-icon.png -------------------------------------------------------------------------------- /website/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/favicon-16x16.png -------------------------------------------------------------------------------- /website/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/favicon-32x32.png -------------------------------------------------------------------------------- /website/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/favicon.ico -------------------------------------------------------------------------------- /website/static/img/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/convert.js -------------------------------------------------------------------------------- /website/static/img/homepage/ant-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/ant-branch.svg -------------------------------------------------------------------------------- /website/static/img/homepage/ant-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/ant-footer.svg -------------------------------------------------------------------------------- /website/static/img/homepage/ant-leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/ant-leaf.svg -------------------------------------------------------------------------------- /website/static/img/homepage/cron-jobs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/cron-jobs.svg -------------------------------------------------------------------------------- /website/static/img/homepage/grafast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/grafast.svg -------------------------------------------------------------------------------- /website/static/img/homepage/job-control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/job-control.svg -------------------------------------------------------------------------------- /website/static/img/homepage/latency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/latency.svg -------------------------------------------------------------------------------- /website/static/img/homepage/migration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/migration.svg -------------------------------------------------------------------------------- /website/static/img/homepage/performance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/performance.svg -------------------------------------------------------------------------------- /website/static/img/homepage/reliable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/reliable.svg -------------------------------------------------------------------------------- /website/static/img/homepage/starter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/starter.svg -------------------------------------------------------------------------------- /website/static/img/homepage/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/homepage/support.svg -------------------------------------------------------------------------------- /website/static/img/logo.optimized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/logo.optimized.svg -------------------------------------------------------------------------------- /website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/logo.png -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/news/2023-11-29-assumptions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/news/2023-11-29-assumptions.jpg -------------------------------------------------------------------------------- /website/static/img/news/2023-11-29-graphile-logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/news/2023-11-29-graphile-logos.svg -------------------------------------------------------------------------------- /website/static/img/news/ant-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/news/ant-heart.svg -------------------------------------------------------------------------------- /website/static/img/testimonials/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/testimonials/discord.png -------------------------------------------------------------------------------- /website/static/img/testimonials/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/testimonials/news.png -------------------------------------------------------------------------------- /website/static/img/testimonials/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/img/testimonials/reddit.png -------------------------------------------------------------------------------- /website/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/website/static/site.webmanifest -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile/worker/HEAD/yarn.lock --------------------------------------------------------------------------------