Update bun version to fix Container Build Error (#860)

* Rename dalle to DALL·E and add link to bun

* Fix DALL-E to DALL·E in Readme

* Update bun version to 0.5.9
This commit is contained in:
Robert Neumann 2023-04-24 22:43:54 +02:00 committed by GitHub
parent 73cfd2fdba
commit fd80617472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ MIN_NODE_VERSION = "12.22.0"
# Valid bun versions.
MIN_BUN_VERSION = "0.5.5"
MAX_BUN_VERSION = "0.5.8"
MAX_BUN_VERSION = "0.5.9"
INVALID_BUN_VERSIONS = ["0.5.6", "0.5.7"]
# Files and directories used to init a new project.
@ -73,7 +73,7 @@ API_URL = "http://localhost:8000"
# The default path where bun is installed.
BUN_PATH = "$HOME/.bun/bin/bun"
# Command to install bun.
INSTALL_BUN = "curl -fsSL https://bun.sh/install | bash -s -- bun-v0.5.5"
INSTALL_BUN = "curl -fsSL https://bun.sh/install | bash -s -- bun-v0.5.9"
# Default host in dev mode.
BACKEND_HOST = "0.0.0.0"
# The default timeout when launching the gunicorn server.