Skip to content

Commit 51b2843

Browse files
authored
Merge pull request #54 from theteamatx/dev
dev to main
2 parents 729c2f7 + 2c3f8f5 commit 51b2843

35 files changed

+4068
-259
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ __pycache__
22
*.pyc
33
.env
44
.vscode/
5+
*/.cache_local_data/*
6+
*/.cache_redis_data/*
7+
extra/*

infra/redis/docker-compose.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: '3.8'
2+
3+
services:
4+
redis-stack:
5+
image: redis/redis-stack:latest
6+
container_name: redis_stack
7+
ports:
8+
- "1234:6379"
9+
- "8001:8001"
10+
volumes:
11+
- ./.cache_redis_data:/data
12+
- ./redis.conf:/redis-stack.conf
13+
networks:
14+
- cache_network
15+
16+
networks:
17+
cache_network:
18+
driver: bridge

0 commit comments

Comments
 (0)