Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
anpigon
/
langchain-qa-bot
like
1
Sleeping
App
Files
Files
Community
64c16ee
langchain-qa-bot
/
docs
/
langchain
/
docker
/
Makefile
anpigon
add langchain docs
ed4d993
5 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
# Makefile
build_graphdb:
docker build --tag graphdb ./graphdb
start_graphdb:
docker-compose up -d graphdb
down:
docker-compose down -v --remove-orphans
.PHONY
: build_graphdb start_graphdb down