Skip to content

Commit 17c00a9

Browse files
committed
fix minor issues
1 parent 3068148 commit 17c00a9

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

.envrc.local

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export AMADEUS_POSTGRES_DATABASE_PASSWORD=${LOCAL_AMADEUS_POSTGRES_DATABASE_PASS
55
export AMADEUS_POSTGRES_DATABASE_URL=postgres://postgres:${LOCAL_AMADEUS_POSTGRES_DATABASE_PASSWORD}@${AMADEUS_HOST}:8091/amadeus
66
export TYPESENSE_ADDR=http://${AMADEUS_HOST}:8095/
77
export TYPESENSE_INDEX_NAME=default
8+
export TYPESENSE_API_KEY=${LOCAL_TYPESENSE_API_KEY}
89

910
export ENABLE_QDRANT=false
1011
export QDRANT_ADDR=http://${AMADEUS_HOST}:8096

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"files.associations": {
3+
".envrc*": "shellscript"
4+
}
5+
}

compose/docker-compose.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ services:
7878
networks:
7979
- default
8080
qdrant:
81+
container_name: qdrant
8182
image: qdrant/qdrant:v1.0.3
8283
ports:
8384
- 8096:6333

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "next start",
1010
"lint": "next lint",
1111
"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",
1313
"migrate:recreate-qdrant-index": "npx ts-node-esm scripts/recreate-qdrant-index.mts"
1414
},
1515
"dependencies": {

frontend/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"next-env.d.ts",
2525
"**/*.ts",
2626
"**/*.tsx",
27-
".next/types/**/*.ts",
28-
"scripts/*.mts"
27+
"**/*.mts",
28+
".next/types/**/*.ts"
2929
],
3030
"exclude": ["node_modules"]
3131
}

0 commit comments

Comments
 (0)