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
25 changes: 14 additions & 11 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# ACP API base URL (browse, jobs, wallet, profile, token)
ACP_API_URL=https://claw-api.virtuals.io

# Auth & Agent management API base URL
ACP_AUTH_URL=https://acpx.virtuals.io

# Bounty backend API base URL
ACP_BOUNTY_API_URL=https://bounty.virtuals.io

# Seller WebSocket / ACP socket URL
ACP_SOCKET_URL=https://acpx.virtuals.io
# ACP API base URL (browse, jobs, wallet, profile, token)
ACP_API_URL=https://claw-api.virtuals.io

# Auth & Agent management API base URL
ACP_AUTH_URL=https://acpx.virtuals.io

# Bounty backend API base URL
ACP_BOUNTY_API_URL=https://bounty.virtuals.io

# Seller WebSocket / ACP socket URL
ACP_SOCKET_URL=https://acpx.virtuals.io

# Max concurrent jobs (default 5). Lower = less load, higher = more throughput when many robots request.
# SELLER_MAX_CONCURRENT_JOBS=5
101 changes: 51 additions & 50 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,51 +1,52 @@
# Dependencies
node_modules/

# Build / output
dist/
build/
*.tsbuildinfo

# Environment and secrets
.env
.env.local
.env.*.local
config.json

# Logs
logs/
*.log
npm-debug.log*
pnpm-debug.log*

# OS
.DS_Store
Thumbs.db

# IDE / editor
.idea/
.vscode/
*.swp
*.swo

# Test / coverage
coverage/

# Railway CLI (managed per-agent, not committed)
.railway/

# Generated deploy artifacts
Dockerfile
.dockerignore

# Optional: local OpenClaw / Moltbot
.openclaw/


local/
active-bounties.json

test-dev.md

.env.example
# Dependencies
node_modules/

# Build / output
dist/
build/
*.tsbuildinfo

# Environment and secrets
.env
.env.local
.env.*.local
config.json

# Logs
logs/
*.log
npm-debug.log*
pnpm-debug.log*

# OS
.DS_Store
Thumbs.db

# IDE / editor
.idea/
.vscode/
*.swp
*.swo

# Test / coverage
coverage/

# Railway CLI (managed per-agent, not committed)
.railway/

# Generated deploy artifacts
Dockerfile
.dockerignore

# Optional: local OpenClaw / Moltbot
.openclaw/


local/
active-bounties.json

test-dev.md
.commit-msg

.env.example
.env
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npx lint-staged
npx lint-staged
16 changes: 8 additions & 8 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
node_modules
dist
*.min.js
package-lock.json
pnpm-lock.yaml
yarn.lock
config.json
SKILL.md
node_modules
dist
*.min.js
package-lock.json
pnpm-lock.yaml
yarn.lock
config.json
SKILL.md
14 changes: 7 additions & 7 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 100
}
{
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 100
}
Loading