File tree 6 files changed +21
-10
lines changed
backend/src/main/resources
6 files changed +21
-10
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " Launch Java: Continuous Mode" ,
9
+ "type" : " jdk" ,
10
+ "request" : " launch" ,
11
+ "launchConfiguration" : " Continuous Mode"
12
+ }
13
+ ]
14
+ }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ server.compression.min-response-size=2KB
11
11
server.shutdown =graceful
12
12
13
13
spring.datasource.initialize =true
14
- spring.datasource.url =${POSTGRES_URL:jdbc:postgresql://localhost:5432/maps }
14
+ spring.datasource.url =${POSTGRES_URL:jdbc:postgresql://localhost:5432/aidoclibchat }
15
15
spring.datasource.username =${POSTGRES_USER:sven1}
16
16
spring.datasource.password =${POSTGRES_PASSWORD:sven1}
17
17
spring.datasource.driver-class-name =org.postgresql.Driver
Original file line number Diff line number Diff line change 12
12
xsi:schemaLocation=" http://www.liquibase.org/xml/ns/dbchangelog
13
13
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd" >
14
14
<changeSet author =" angular2guy" id =" 1" >
15
- <sql >CREATE EXTENSION vector;</sql >
16
- </changeSet >
17
- <changeSet author =" angular2guy" id =" 2" >
18
15
<createTable tableName =" document" >
19
16
<column name =" id" type =" bigint" >
20
- <constaints primaryKey =" true" />
17
+ <constraints primaryKey =" true" />
21
18
</column >
22
19
<column name =" document_name" type =" varchar(255)" >
23
- <constaints notNullConstraintName =" document_document_name" nullable =" false" />
20
+ <constraints notNullConstraintName =" document_document_name" nullable =" false" />
24
21
</column >
25
22
<column name =" document_type" type =" varchar(25)" >
26
- <constaints notNullConstraintName =" document_document_type" nullable =" false" />
23
+ <constraints notNullConstraintName =" document_document_type" nullable =" false" />
27
24
</column >
28
25
<column name =" document_content" type =" blob" />
29
26
</createTable >
30
27
</changeSet >
31
- <changeSet autor =" angular2guy" id =" 3 " >
28
+ <changeSet author =" angular2guy" id =" 2 " >
32
29
<createSequence sequenceName =" document_SEQ" incrementBy =" 50"
33
30
startValue=" 1000" />
34
31
</changeSet >
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
docker pull ankane/pgvector:latest
3
3
docker run --name aidoclibchat-postgres -e POSTGRES_PASSWORD=sven1 -e POSTGRES_USER=sven1 -e POSTGRES_DB=aidoclibchat -p 5432:5432 -d postgres
4
- # docker start maps -postgres
5
- # docker stop maps -postgres
4
+ # docker start aidoclibchat -postgres
5
+ # docker stop aidoclibchat -postgres
You can’t perform that action at this time.
0 commit comments