Skip to content

Commit 38788d2

Browse files
committed
fix: added error catching
1 parent a6d7b40 commit 38788d2

File tree

5 files changed

+38
-182
lines changed

5 files changed

+38
-182
lines changed

.env.docker.example

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33

4-
OLLAMA_URL=http://host.docker.internal:11434 # change http://ollama:11434 if running in docker
4+
OLLAMA_URL=http://ollama:11435# change to http://host.docker.internal:11434 if running ollama outside of docker
55
OLLAMA_MODEL=llama3:instruct
66

77
# Postgres
@@ -11,7 +11,7 @@ POSTGRES_DB=app
1111
POSTGRES_USER=postgres
1212
POSTGRES_PASSWORD=postgres
1313

14-
REDIS_ENDPOINT= redis://redis:6379/0
14+
REDIS_ENDPOINT=redis://redis:6379/0
1515

1616
ENVIRONMENT=development
1717

dashboard/angular.json

+3
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,8 @@
101101
}
102102
}
103103
}
104+
},
105+
"cli": {
106+
"analytics": false
104107
}
105108
}

docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ services:
88
- .:/app
99
depends_on:
1010
- db
11+
- ollama
1112
env_file:
1213
- .env.docker
1314
develop:
@@ -25,6 +26,7 @@ services:
2526
depends_on:
2627
- db
2728
- redis
29+
- ollama
2830
env_file:
2931
- .env.docker
3032

src/.env.example

-14
This file was deleted.

0 commit comments

Comments
 (0)