From 41cb2eb470d3d1cda990281c81985ebe3b0b15f4 Mon Sep 17 00:00:00 2001 From: Reeverflow Date: Thu, 5 Feb 2026 20:38:36 +0100 Subject: [PATCH] add postgres connector --- src/main/resources/application.properties | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index abb07c6..0c74d54 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1 +1,5 @@ spring.application.name=video_downloader +spring.datasource.url = jdbc:postgresql://localhost:5432/videos +spring.datasource.username = postgres +spring.datasource.password = 5995 +spring.jpa.hibernate.ddl-auto = update \ No newline at end of file