Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
**/.DS_Store
**/dist
**/yarn-error.log
lerna-debug.log
lerna-debug.log
.vscode
18 changes: 15 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: up down ai
.PHONY: up down ai ssh roles install openhands

up:
docker-compose up -d
Expand All @@ -10,8 +10,6 @@ down:
ai:
docker-compose -f docker-compose.ai.yml up -d

.PHONY: ssh roles install

ssh:
docker exec -it postgres /bin/bash

Expand All @@ -20,3 +18,17 @@ roles:

install:
docker exec postgres /sql-bin/install.sh

openhands:
@echo "Starting OpenHands with current directory: $(PWD)"
export SANDBOX_VOLUMES=$(PWD):/workspace:rw; \
docker run -it --rm --pull=always \
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.44-nikolaik \
-e SANDBOX_VOLUMES=$$SANDBOX_VOLUMES \
-e LOG_ALL_EVENTS=true \
-v /var/run/docker.sock:/var/run/docker.sock \
-v ~/.openhands:/.openhands \
-p 4444:3000 \
--add-host host.docker.internal:host-gateway \
--name launchql-openhands \
docker.all-hands.dev/all-hands-ai/openhands:0.44
Loading