Skip to content
Open
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
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ services:
# /bin/sh -c "
# if [ ! -f /root/.anytype/config.json ]; then
# echo 'Creating bot account...';
# /app/anytype serve &
# anytype serve &
# SERVER_PID=$$!;
# sleep 2;
# /app/anytype auth create $${ANYTYPE_CLI_ACCOUNT_NAME} --network-config /etc/anytype/network.yml || true;
# anytype auth create $${ANYTYPE_CLI_ACCOUNT_NAME} --network-config /etc/anytype/network.yml || true;
# echo 'Waiting for account initialization...';
# sleep 2;
# kill $$SERVER_PID 2>/dev/null || true;
Expand Down
4 changes: 2 additions & 2 deletions tests/test-anytype-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ docker compose ps anytype-cli
echo

echo "2. Checking authentication status..."
docker compose exec anytype-cli /app/anytype auth status
docker compose exec anytype-cli anytype auth status
echo

echo "3. Listing spaces..."
docker compose exec anytype-cli /app/anytype space list
docker compose exec anytype-cli anytype space list
echo

echo "4. Checking health..."
Expand Down
Loading