mrq
Mr. Queue - A distributed worker task queue in Python using Redis & gevent
File Explorer
Download Latest Version (.zip)- best-practices.md
- changelog.md
- command-line.md
- configuration.md
- contributing.md
- dashboard.md
- dependencies.md
- examples.md
- get-started.md
- index.md
- io-monitoring.md
- jobs-maintenance.md
- jobs.md
- license.md
- memory-leaks.md
- metrics.md
- performance.md
- queue-performance.md
- queues.md
- recurring-jobs.md
- tests.md
- workers.md
- enqueue.py
- tasks.py
- config.py
- README.md
- tasks.py
- crawler.py
- README.md
- requirements.txt
- config.py
- enqueue_raw_jobs.py
- example.py
- README.md
- __init__.py
- cleaning.py
- indexes.py
- orchestrator.py
- utils.py
- __init__.py
- mrq_agent.py
- mrq_run.py
- mrq_worker.py
- 0.bundle.js
- 32941d6330044744c02493835b799e90.svg
- 64f2d23d70cb2b2810031880f554b13c.png
- 68ed1dac06bf0409c18ae7bc62889170.woff
- 6c56b94fd0540844a7118cdff565b0ae.png
- 7ad17c6085dee9a33787bac28fb23d46.eot
- 8f88d990024975797f96ce7648dacd2f.png
- 94b34ff5224ba38210d67623bb1a1504.png
- bundle.js
- d48475e6c742940f44e62622e16865b9.png
- e49d52e74b7689a0727def99da31f3eb.ttf
- bootstrap-theme.min.css
- datatables.css
- jquery.circliful.css
- mrq-dashboard.css
- glyphicons-halflings-regular.eot
- glyphicons-halflings-regular.svg
- glyphicons-halflings-regular.ttf
- glyphicons-halflings-regular.woff
- favicon-old.ico
- favicon.ico
- sort_asc.png
- sort_asc_disabled.png
- sort_both.png
- sort_desc.png
- sort_desc_disabled.png
- backbone.min.js
- backbone.queryparams.js
- bootstrap.js
- bootstrap.min.js
- datatables.bs3.js
- jquery-2.1.0.min.js
- jquery.circliful.min.js
- jquery.dataTables.min.js
- jquery.sparkline.min.js
- moment.min.js
- require.js
- underscore.min.js
- datatablepage.js
- page.js
- agents.js
- index.js
- io.js
- jobs.js
- queues.js
- root.js
- scheduledjobs.js
- status.js
- taskexceptions.js
- taskpaths.js
- workergroups.js
- workers.js
- app.js
- main.js
- models.js
- router.js
- package.json
- webpack.config.js
- index.html
- library.html
- __init__.py
- app.py
- utils.py
- uwsgi-heroku.ini
- __init__.py
- agent.py
- config.py
- context.py
- exceptions.py
- helpers.py
- job.py
- logger.py
- monkey.py
- processes.py
- queue.py
- queue_raw.py
- queue_regular.py
- redishelpers.py
- scheduler.py
- subpool.py
- supervisor.py
- task.py
- utils.py
- version.py
- worker.py
- git-set-file-times
- propagate_docs.py
- index.html
- nginx.conf
- config-io-hooks.py
- config-logger-capped.py
- config-logger.py
- config-lostjobs.py
- config-metric.py
- config-multiredis.py
- config-notify.py
- config-raw1.py
- config-retry1.py
- config-scheduler-invalid1.py
- config-scheduler-invalid2.py
- config-scheduler-invalid3.py
- config-scheduler-invalid4.py
- config-scheduler1.py
- config-scheduler2.py
- config-scheduler3.py
- config-scheduler5.py
- config-scheduler6.py
- config-scheduler7.py
- config-scheduler8.py
- config-shorttimeout.py
- config1.py
- config2.py
- standalone_script1.py
- __init__.py
- agent.py
- concurrency.py
- context.py
- general.py
- io.py
- largefile.py
- logger.py
- mongodb.py
- redis.py
- __init__.py
- conftest.py
- test_abort.py
- test_agent.py
- test_cancel.py
- test_cli.py
- test_config.py
- test_context.py
- test_disconnects.py
- test_general.py
- test_interrupts.py
- test_io_hooks.py
- test_jobaction.py
- test_jobinspect.py
- test_logger.py
- test_memoryleaks.py
- test_notify.py
- test_parallel.py
- test_pause.py
- test_performance.py
- test_processes.py
- test_progress.py
- test_queuesize.py
- test_ratelimit.py
- test_raw.py
- test_retry.py
- test_routes.py
- test_scheduler.py
- test_sorted.py
- test_subpool.py
- test_subqueues.py
- test_timeout.py
- test_utils.py
- .dockerignore
- .gitignore
- .pylintrc
- .travis.yml
- Dockerfile
- Dockerfile-with-code
- LICENSE
- Makefile
- MANIFEST.in
- mkdocs.yml
- Procfile
- README.md
- requirements-base.txt
- requirements-dashboard.txt
- requirements-dev.txt
- requirements-heroku.txt
- requirements.txt
- setup.py
# Installation Guide
1. Get the code
git clone https://github.com/pricingassistant/mrq
Downloads the entire project code from GitHub to your computer.
cd mrq
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t mrq .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 mrq
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
โ ๏ธ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd mrq/dashboard/static
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
4. Python
EasyPrerequisites
pip install -r requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
python <์คํํ ํ์ผ๋ช
>.py # README์์ ์ ํํ ์คํ ํ์ผ๋ช
์ ํ์ธํ์ธ์
Runs the Python script (or module).
If it runs without errors and prints output in the terminal, it worked.
5. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
