mirror of
https://github.com/TabbyML/tabby
synced 2024-11-22 17:41:54 +00:00
Add Development
This commit is contained in:
parent
eacafd63a5
commit
5b6125d89e
11
README.md
11
README.md
@ -47,6 +47,17 @@ We also provides an interactive playground in admin panel [localhost:8501](http:
|
||||
|
||||
Tabby opens an FastAPI server at [localhost:5000](https://localhost:5000), which embeds an OpenAPI documentation of the HTTP API.
|
||||
|
||||
## Development
|
||||
|
||||
Go to `development` directory.
|
||||
```
|
||||
make dev
|
||||
```
|
||||
or
|
||||
```
|
||||
make triton-dev
|
||||
```
|
||||
|
||||
## TODOs
|
||||
|
||||
* [ ] Fine-tuning models on private code repository.
|
||||
|
@ -1,14 +1,7 @@
|
||||
UP_FLAGS := up --remove-orphans --remove-orphans
|
||||
DEV_FLAGS := $(UP_FLAGS) --build
|
||||
|
||||
up:
|
||||
docker-compose -f docker-compose.yml $(UP_FLAGS)
|
||||
|
||||
up-triton:
|
||||
docker-compose -f docker-compose.yml -f docker-compose.triton.yml $(UP_FLAGS)
|
||||
UP_FLAGS := up --remove-orphans --remove-orphans --build
|
||||
|
||||
dev:
|
||||
docker-compose -f docker-compose.yml -f docker-compose.dev.yml $(DEV_FLAGS)
|
||||
docker-compose -f docker-compose.yml -f docker-compose.dev.yml $(UP_FLAGS)
|
||||
|
||||
dev-triton:
|
||||
docker-compose -f docker-compose.yml -f docker-compose.triton.yml -f docker-compose.dev.yml $(DEV_FLAGS)
|
||||
docker-compose -f docker-compose.yml -f docker-compose.triton.yml -f docker-compose.dev.yml $(UP_FLAGS)
|
||||
|
Loading…
Reference in New Issue
Block a user