File tree 5 files changed +10
-3
lines changed
5 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export AMADEUS_POSTGRES_DATABASE_PASSWORD=${LOCAL_AMADEUS_POSTGRES_DATABASE_PASS
5
5
export AMADEUS_POSTGRES_DATABASE_URL=postgres://postgres:${LOCAL_AMADEUS_POSTGRES_DATABASE_PASSWORD}@${AMADEUS_HOST}:8091/amadeus
6
6
export TYPESENSE_ADDR=http://${AMADEUS_HOST}:8095/
7
7
export TYPESENSE_INDEX_NAME=default
8
+ export TYPESENSE_API_KEY=${LOCAL_TYPESENSE_API_KEY}
8
9
9
10
export ENABLE_QDRANT=false
10
11
export QDRANT_ADDR=http://${AMADEUS_HOST}:8096
Original file line number Diff line number Diff line change
1
+ {
2
+ "files.associations" : {
3
+ ".envrc*" : " shellscript"
4
+ }
5
+ }
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ services:
78
78
networks :
79
79
- default
80
80
qdrant :
81
+ container_name : qdrant
81
82
image : qdrant/qdrant:v1.0.3
82
83
ports :
83
84
- 8096:6333
Original file line number Diff line number Diff line change 9
9
"start" : " next start" ,
10
10
"lint" : " next lint" ,
11
11
"migrate:deploy-db" : " npx prisma migrate deploy" ,
12
- "migrate:recreate-typesense-index" : " npx ts-node-esm scripts/recreaet -typesense-index.mts" ,
12
+ "migrate:recreate-typesense-index" : " npx ts-node-esm scripts/recreate -typesense-index.mts" ,
13
13
"migrate:recreate-qdrant-index" : " npx ts-node-esm scripts/recreate-qdrant-index.mts"
14
14
},
15
15
"dependencies" : {
Original file line number Diff line number Diff line change 24
24
" next-env.d.ts" ,
25
25
" **/*.ts" ,
26
26
" **/*.tsx" ,
27
- " .next/types/ **/*.ts " ,
28
- " scripts/*.mts "
27
+ " **/*.mts " ,
28
+ " .next/types/**/*.ts "
29
29
],
30
30
"exclude" : [" node_modules" ]
31
31
}
You can’t perform that action at this time.
0 commit comments