forked from langwatch/langwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (25 loc) · 857 Bytes
/
Copy pathMakefile
File metadata and controls
34 lines (25 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.PHONY: start sync-all-openapi quickstart user-delete-dry-run user-delete es-delete-dry-run es-delete
install:
cd langwatch && pnpm install
cd langwatch_nlp && make install
start:
cd langwatch && pnpm concurrently --kill-others 'pnpm dev' 'cd ../langwatch_nlp && make start'
python-build:
uv pip install build && uv run python -m build
python-install:
pip install --no-cache-dir --force-reinstall dist/langwatch_server-*-py3-none-any.whl
start/postgres:
@echo "Starting Postgres..."
@docker compose up -d postgres
tsc-watch:
cd langwatch && pnpm tsc-watch
quickstart:
@echo "Starting Langwatch..."
@docker compose up redis postgres -d
make install
make start
open http://localhost:5560
sync-all-openapi:
pnpm run task generateOpenAPISpec
cd typescript-sdk && pnpm run generate:openapi-types
cd python-sdk && make generate/api-client