Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use nodemon for reloading on all server processes #160

Merged
merged 5 commits into from
Feb 2, 2023

Commits on Dec 14, 2022

  1. Use nodemon for reloading on all server processes

    This examples nodemon from the celery entrypoint script to the web and
    proxito service entrypoint scripts.
    
    The Django runserver --reload option doesn't see to be configurable, and
    seems to watch a lot of files that are not needed for reloading. I can't
    tell what exactly is being watched by runserver, but I am getting
    frequent `too many open files` errors from processes in Docker. Running with
    --no-reload mostly solves this issue, but requires manually restarting
    services.
    
    Someone else should spend some time with this, I'm not confident that this will:
    
    1. Fix the issue for others
    2. Not cause irreparable damage to your local installation
    agjohnson committed Dec 14, 2022
    Configuration menu
    Copy the full SHA
    eaf50eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed52b4b View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2023

  1. Use gunicorn

    humitos committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    bbfef38 View commit details
    Browse the repository at this point in the history
  2. Update nodemon configuration

    humitos committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    8b00dc9 View commit details
    Browse the repository at this point in the history
  3. More nodemon settings

    humitos committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    2ef4833 View commit details
    Browse the repository at this point in the history