File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,4 +97,5 @@ target/
9797standalone /test-local.sh
9898standalone /public /tester.html
9999standalone /data /
100- trycap
100+ trycap
101+ .claude
Original file line number Diff line number Diff line change 1+ node_modules
2+ docker-compose *
3+ .dockerignore
4+ .git
5+ .gitignore
6+ README.md
7+ LICENSE
8+ .vscode
9+ Makefile
10+ helm-charts
11+ .env
12+ .editorconfig
13+ .idea
14+ coverage *
15+ .data
16+ data
Original file line number Diff line number Diff line change 1+ services :
2+ cap :
3+ build : .
4+ develop :
5+ watch :
6+ - action : rebuild
7+ path : .
8+ ports :
9+ - " 3067:3000"
10+ environment :
11+ ADMIN_KEY : test_admin_key_local_dev
12+ REDIS_URL : redis://valkey:6379
13+ SHOW_ERRORS : " true"
14+ HIDE_RATELIMIT_IP_WARNING : " true"
15+ depends_on :
16+ valkey :
17+ condition : service_healthy
18+ restart : unless-stopped
19+
20+ valkey :
21+ image : valkey/valkey:9-alpine
22+ ports :
23+ - " 6379:6379"
24+ command : valkey-server --save 60 1 --loglevel notice --maxmemory-policy noeviction
25+ healthcheck :
26+ test : ["CMD", "valkey-cli", "ping"]
27+ interval : 5s
28+ timeout : 3s
29+ retries : 5
30+ restart : unless-stopped
Original file line number Diff line number Diff line change 1+ services :
2+ cap :
3+ image : tiago2/cap:latest
4+ container_name : cap
5+ ports :
6+ - " 3000:3000"
7+ environment :
8+ ADMIN_KEY : your_secret_password
9+ REDIS_URL : redis://valkey:6379
10+ depends_on :
11+ valkey :
12+ condition : service_healthy
13+ restart : unless-stopped
14+
15+ valkey :
16+ image : valkey/valkey:9-alpine
17+ container_name : cap-valkey
18+ volumes :
19+ - valkey-data:/data
20+ command : valkey-server --save 60 1 --loglevel warning --maxmemory-policy noeviction
21+ healthcheck :
22+ test : ["CMD", "valkey-cli", "ping"]
23+ interval : 5s
24+ timeout : 3s
25+ retries : 5
26+ restart : unless-stopped
27+
28+ volumes :
29+ valkey-data :
Original file line number Diff line number Diff line change 11{
22 "name" : " cap-standalone" ,
3- "version" : " 3.0.6 " ,
3+ "version" : " 3.0.7 " ,
44 "keywords" : [
55 " algorithm" ,
66 " anti-abuse" ,
You can’t perform that action at this time.
0 commit comments