Skip to content

Commit ff78954

Browse files
Revert "V2 fix chatwoot reply quote"
1 parent 2c7288e commit ff78954

File tree

9 files changed

+389
-1433
lines changed

9 files changed

+389
-1433
lines changed

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ DEL_INSTANCE=false
2323

2424
# Provider: postgresql | mysql
2525
DATABASE_PROVIDER=postgresql
26-
# DATABASE_DIRECT_URL='' # Direct connection to the database
2726
DATABASE_CONNECTION_URI='postgresql://user:pass@localhost:5432/evolution?schema=public'
2827
# Client name for the database connection
2928
# It is used to separate an API installation from another that uses the same database.

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@
1212
"prisma-smart-formatter.prisma.defaultFormatter": "Prisma.prisma",
1313
"i18n-ally.localesPaths": [
1414
"store/messages"
15-
],
16-
"typescript.tsdk": "node_modules/typescript/lib"
15+
]
1716
}

bun.lockb

-455 KB
Binary file not shown.

docker-compose.yaml

Lines changed: 11 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,23 @@
11
version: '3.3'
22

33
services:
4-
redis:
5-
image: redis:latest
6-
container_name: redis
7-
command: >
8-
redis-server --port 6379 --appendonly yes
9-
networks:
10-
- evolution-net
11-
volumes:
12-
- evolution_redis:/data
13-
ports:
14-
- 6379:6379
15-
expose:
16-
- 6379
17-
18-
postgres:
19-
container_name: postgres
20-
image: postgres:15
21-
networks:
22-
- evolution-net
23-
command: ["postgres", "-c", "max_connections=1000"]
4+
api:
5+
container_name: evolution_api
6+
image: atendai/evolution-api:v2.0.9-rc
247
restart: always
258
ports:
26-
- 5432:5432
27-
environment:
28-
- POSTGRES_PASSWORD=PASSWORD
9+
- 8080:8080
2910
volumes:
30-
- postgres_data:/var/lib/postgresql/data
11+
- evolution_instances:/evolution/instances
12+
networks:
13+
- evolution-net
14+
env_file:
15+
- .env
3116
expose:
32-
- 5432
17+
- 8080
3318

3419
volumes:
35-
postgres_data:
36-
evolution_redis:
20+
evolution_instances:
3721

3822
networks:
3923
evolution-net:

0 commit comments

Comments
 (0)