plain.dev 0.39.1__tar.gz → 0.40.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plain_dev-0.39.1 → plain_dev-0.40.0}/PKG-INFO +2 -2
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/CHANGELOG.md +10 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/README.md +1 -1
- {plain_dev-0.39.1 → plain_dev-0.40.0}/pyproject.toml +1 -1
- {plain_dev-0.39.1 → plain_dev-0.40.0}/.gitignore +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/LICENSE +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/README.md +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/AGENTS.md +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/__init__.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/alias.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/cli.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/contribute/README.md +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/contribute/__init__.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/contribute/cli.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/core.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/debug.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/default_settings.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/entrypoints.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/gunicorn_logging.json +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/mkcert.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/pdb.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/poncho/__init__.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/poncho/color.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/poncho/compat.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/poncho/manager.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/poncho/printer.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/poncho/process.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/precommit/__init__.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/precommit/cli.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/process.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/services.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/plain/dev/utils.py +0 -0
- {plain_dev-0.39.1 → plain_dev-0.40.0}/tests/settings.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: plain.dev
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.40.0
|
4
4
|
Summary: A single command that runs everything you need for local development.
|
5
5
|
Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
|
6
6
|
License-Expression: BSD-3-Clause
|
@@ -78,7 +78,7 @@ postgres = {cmd = "docker run --name app-postgres --rm -p 54321:5432 -v $(pwd)/.
|
|
78
78
|
|
79
79
|
#### Custom processes
|
80
80
|
|
81
|
-
Unlike [services](#services), custom processes are _only_ run during `plain dev`. This is a good place to run something like [ngrok](https://ngrok.com/) or a [Plain worker](../../../plain-
|
81
|
+
Unlike [services](#services), custom processes are _only_ run during `plain dev`. This is a good place to run something like [ngrok](https://ngrok.com/) or a [Plain job worker](../../../plain-jobs), which you might need to use your local site, but don't need running for executing tests, for example.
|
82
82
|
|
83
83
|
```toml
|
84
84
|
# pyproject.toml
|
@@ -1,5 +1,15 @@
|
|
1
1
|
# plain-dev changelog
|
2
2
|
|
3
|
+
## [0.40.0](https://github.com/dropseed/plain/releases/plain-dev@0.40.0) (2025-10-10)
|
4
|
+
|
5
|
+
### What's changed
|
6
|
+
|
7
|
+
- Updated documentation to reference `plain-jobs` instead of the deprecated `plain-worker` package name ([24219856e0](https://github.com/dropseed/plain/commit/24219856e0))
|
8
|
+
|
9
|
+
### Upgrade instructions
|
10
|
+
|
11
|
+
- No changes required
|
12
|
+
|
3
13
|
## [0.39.1](https://github.com/dropseed/plain/releases/plain-dev@0.39.1) (2025-10-06)
|
4
14
|
|
5
15
|
### What's changed
|
@@ -61,7 +61,7 @@ postgres = {cmd = "docker run --name app-postgres --rm -p 54321:5432 -v $(pwd)/.
|
|
61
61
|
|
62
62
|
#### Custom processes
|
63
63
|
|
64
|
-
Unlike [services](#services), custom processes are _only_ run during `plain dev`. This is a good place to run something like [ngrok](https://ngrok.com/) or a [Plain worker](../../../plain-
|
64
|
+
Unlike [services](#services), custom processes are _only_ run during `plain dev`. This is a good place to run something like [ngrok](https://ngrok.com/) or a [Plain job worker](../../../plain-jobs), which you might need to use your local site, but don't need running for executing tests, for example.
|
65
65
|
|
66
66
|
```toml
|
67
67
|
# pyproject.toml
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|