diff --git a/docs/configuration.rst b/docs/configuration.rst index b86e2cfbdd..72fbf294cb 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -29,8 +29,8 @@ Gunicorn configuration: https://docs.gunicorn.org/en/stable/settings.html#timeout - Used in `bin/run_webapp.sh - `_. + Used in `bin/run_service_webapp.sh + `_. .. everett:option:: GUNICORN_WORKERS @@ -44,8 +44,8 @@ Gunicorn configuration: http://docs.gunicorn.org/en/stable/design.html#how-many-workers - Used in `bin/run_webapp.sh - `_. + Used in `bin/run_service_webapp.sh + `_. .. everett:option:: GUNICORN_WORKER_CLASS @@ -55,8 +55,8 @@ Gunicorn configuration: https://docs.gunicorn.org/en/stable/settings.html#workers - Used in `bin/run_webapp.sh - `_. + Used in `bin/run_service_webapp.sh + `_. .. everett:option:: GUNICORN_MAX_REQUESTS @@ -66,8 +66,8 @@ Gunicorn configuration: https://docs.gunicorn.org/en/stable/settings.html#workers - Used in `bin/run_webapp.sh - `_. + Used in `bin/run_service_webapp.sh + `_. .. everett:option:: GUNICORN_MAX_REQUESTS_JITTER @@ -78,8 +78,8 @@ Gunicorn configuration: https://docs.gunicorn.org/en/stable/settings.html#workers - Used in `bin/run_webapp.sh - `_. + Used in `bin/run_service_webapp.sh + `_. Webapp configuration: diff --git a/docs/service/cron.rst b/docs/service/cron.rst index a9d2fb4f93..312a93c1ef 100644 --- a/docs/service/cron.rst +++ b/docs/service/cron.rst @@ -11,8 +11,8 @@ Job configuration is in ``webapp/crashstats/cron/__init__.py``. Code is in ``webapp/crashstats/cron/``. -Run script is ``/app/bin/run_crontabber.sh``. This is an infinite loop that -runs the ``manage.py cronrun`` command every 5 minutes. +Run script is ``/app/bin/run_service_crontabber.sh``. This is an infinite loop +that runs the ``manage.py cronrun`` command every 5 minutes. manage.py cronrun diff --git a/docs/service/processor.rst b/docs/service/processor.rst index eb1b36a200..deea90a013 100644 --- a/docs/service/processor.rst +++ b/docs/service/processor.rst @@ -47,8 +47,8 @@ To run the processor in the local dev environment, do:: $ docker compose up processor That will bring up all the services the processor requires to run and start the -processor using the ``/app/bin/run_processor.sh`` script and the processor -configuration. +processor using the ``/app/bin/run_service_processor.sh`` script and the +processor configuration. To use tools and also ease debugging in the container, you can run a shell:: @@ -69,4 +69,4 @@ Run the docker image using the ``processor`` command. Something like this:: --volume /data:/data \ mozilla/socorro_app processor -This runs the ``/app/bin/run_processor.sh`` script. +This runs the ``/app/bin/run_service_processor.sh`` script. diff --git a/docs/service/webapp.rst b/docs/service/webapp.rst index 94df456430..83ff3a0fc1 100644 --- a/docs/service/webapp.rst +++ b/docs/service/webapp.rst @@ -6,7 +6,7 @@ Crash Stats Webapp Code is in ``webapp/``. -Run script is ``/app/bin/run_webapp.sh``. +Run script is ``/app/bin/run_service_webapp.sh``. Configuration @@ -144,7 +144,7 @@ Then compile the static assets:: Now run the webapp with ``gunicorn`` and ``DEBUG=False``:: - app@socorro:/app$ DEBUG=False bash bin/run_webapp.sh + app@socorro:/app$ DEBUG=False bash bin/run_service_webapp.sh You will now be able to open ``http://localhost:8000`` on the host and if you view the source you see that the minified and concatenated static assets are diff --git a/socorro/processor/cache_manager.py b/socorro/processor/cache_manager.py index 23e0e7eadb..61c84f639d 100755 --- a/socorro/processor/cache_manager.py +++ b/socorro/processor/cache_manager.py @@ -17,7 +17,7 @@ To run:: - $ /app/bin/run_processor_cache_manager.sh + $ /app/bin/run_cache_manager.sh """