Skip to content

Commit f29b09b

Browse files
committed
add rules for agent-platform architecture and setup docker-compose for postgresql, postgreadmin and Qdran vector database as requirements of agent-platform
1 parent 513acad commit f29b09b

6 files changed

Lines changed: 634 additions & 2 deletions

File tree

.env.example

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1-
# Firebase Configuration
21
VITE_FIREBASE_API_KEY=
32
VITE_FIREBASE_AUTH_DOMAIN=
43
VITE_FIREBASE_PROJECT_ID=
54
VITE_FIREBASE_STORAGE_BUCKET=
65
VITE_FIREBASE_MESSAGING_SENDER_ID=
76
VITE_FIREBASE_APP_ID=
7+
8+
POSTGRES_DB=pyramid
9+
POSTGRES_USER=pyramid_user
10+
POSTGRES_PASSWORD=pyramid_password
11+
POSTGRES_PORT=5432
12+
13+
DATABASE_URL=postgresql://pyramid_user:pyramid_password@localhost:5432/pyramid
14+
POSTGRES_URL=postgresql://pyramid_user:pyramid_password@localhost:5432/pyramid
15+
16+
QDRANT_HTTP_PORT=6333
17+
QDRANT_GRPC_PORT=6334
18+
QDRANT_URL=http://localhost:6333
19+
20+
PGADMIN_PORT=5050
21+
PGADMIN_DEFAULT_EMAIL=admin@example.com
22+
PGADMIN_DEFAULT_PASSWORD=admin_password
23+
PGADMIN_URL=http://localhost:5050

0 commit comments

Comments
 (0)