Skip to content

Allow configuring hot reload paths #318

Open
@kyboi

Description

@kyboi

Currently using --reload argument will take into account .gitignore, but there are files that will trigger a reload even when it isn't necessary. These files must be in the repo so can't be added to the ignore, e.g. docker configuration files.

Perhaps something like uvicorn does, with watchfiles:

https://github.com/encode/uvicorn/blob/master/uvicorn/supervisors/watchfilesreload.py

--reload                        Enable auto-reload.
--reload-dir PATH               Set reload directories explicitly, instead
                                  of using the current working directory.
--reload-include TEXT           Set glob patterns to include while watching
                                  for files. Includes '*.py' by default; these
                                  defaults can be overridden with `--reload-
                                  exclude`. This option has no effect unless
                                  watchfiles is installed.
--reload-exclude TEXT           Set glob patterns to exclude while watching
                                  for files. Includes '.*, .py[cod], .sw.*,
                                  ~*' by default; these defaults can be
                                  overridden with `--reload-include`. This
                                  option has no effect unless watchfiles is
                                  installed.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions