Plain
Get Started Source + Docs Dev Updates
BSD-3 v0.131.3
Log in
Get Started Source + Docs Dev Updates BSD-3 v0.131.3
Documentation
Core
agents
assets
chores
cli
csrf
forms
http
internal
logs
packages
preflight
runtime
server
signals
templates
test
urls
utils
views
CHANGELOG.md
README.md
debug.py
exceptions.py
json.py
paginator.py
signing.py
validators.py
Packages
admin
api
auth
cache
cloud
code
dev
elements
email
esbuild
CHANGELOG.md
README.md
cli.py
core.py
entrypoints.py
flags
htmx
jobs
loginlink
oauth
observer
pages
pageviews
passwords
portal
postgres
pytest
redirection
scan
sessions
start
support
tailwind
toolbar
tunnel
vendor
Core
agents
assets
chores
cli
csrf
forms
http
internal
logs
packages
preflight
runtime
server
signals
templates
test
urls
utils
views
CHANGELOG.md
README.md
debug.py
exceptions.py
json.py
paginator.py
signing.py
validators.py
Packages
admin
api
auth
cache
cloud
code
dev
elements
email
esbuild
CHANGELOG.md
README.md
cli.py
core.py
entrypoints.py
flags
htmx
jobs
loginlink
oauth
observer
pages
pageviews
passwords
portal
postgres
pytest
redirection
scan
sessions
start
support
tailwind
toolbar
tunnel
vendor
Loading
Docs plain-esbuild plain esbuild entrypoints.py
Raw LLM
 1from .cli import build, dev
 2
 3
 4def run_dev_build() -> None:
 5    # This will run by itself as a command, so it can exit()
 6    dev([], standalone_mode=True)
 7
 8
 9def run_build() -> None:
10    # Standalone mode prevents it from exit()ing
11    build([], standalone_mode=False)
On this page