Add Development
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.
|
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
|
## TODOs
|
||||||
|
|
||||||
* [ ] Fine-tuning models on private code repository.
|
* [ ] Fine-tuning models on private code repository.
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,7 @@
|
||||||
UP_FLAGS := up --remove-orphans --remove-orphans
|
UP_FLAGS := up --remove-orphans --remove-orphans --build
|
||||||
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)
|
|
||||||
|
|
||||||
dev:
|
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:
|
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