Compare commits
1 Commits
v0.4.0
...
d35ef995a3
Author | SHA1 | Date | |
---|---|---|---|
d35ef995a3 |
Binary file not shown.
Before Width: | Height: | Size: 501 KiB After Width: | Height: | Size: 339 KiB |
File diff suppressed because one or more lines are too long
1
prompts-raw.ndjson
Normal file
1
prompts-raw.ndjson
Normal file
File diff suppressed because one or more lines are too long
64
prompts.ndjson
Normal file
64
prompts.ndjson
Normal file
File diff suppressed because one or more lines are too long
@@ -25,7 +25,7 @@ def main():
|
||||
"--workers", str(AppSettings.GUNICORN_WORKERS),
|
||||
"--bind", AppSettings.GUNICORN_BIND,
|
||||
"--timeout", str(AppSettings.GUNICORN_TIMEOUT),
|
||||
"--keep-alive", str(AppSettings.GUNICORN_KEEPALIVE),
|
||||
"--keepalive", str(AppSettings.GUNICORN_KEEPALIVE),
|
||||
"--access-logfile", "-",
|
||||
"--error-logfile", "-",
|
||||
"--log-level", "info",
|
||||
|
@@ -72,12 +72,10 @@ class AppSettings:
|
||||
DEBUG = os.getenv("EMBEDDINGBUDDY_DEBUG", "True").lower() == "true"
|
||||
HOST = os.getenv("EMBEDDINGBUDDY_HOST", "127.0.0.1")
|
||||
PORT = int(os.getenv("EMBEDDINGBUDDY_PORT", "8050"))
|
||||
|
||||
|
||||
# Environment Configuration
|
||||
ENVIRONMENT = os.getenv(
|
||||
"EMBEDDINGBUDDY_ENV", "development"
|
||||
) # development, production
|
||||
|
||||
ENVIRONMENT = os.getenv("EMBEDDINGBUDDY_ENV", "development") # development, production
|
||||
|
||||
# WSGI Server Configuration (for production)
|
||||
GUNICORN_WORKERS = int(os.getenv("GUNICORN_WORKERS", "4"))
|
||||
GUNICORN_BIND = os.getenv("GUNICORN_BIND", f"{HOST}:{PORT}")
|
||||
|
Reference in New Issue
Block a user