DONE: pipeline cicd for backend (#2)
Build Docker Image / build-backend (push) Failing after 22s

Co-authored-by: ISMAIL MASSERAN <topaz@ISMAILs-Macbook.local>
Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-07-23 11:47:55 +08:00
parent 85b31e9528
commit 319057990a
10 changed files with 343 additions and 21 deletions
+10 -7
View File
@@ -1,3 +1,6 @@
server:
port: ${SERVER_PORT:8080}
spring:
application:
name: qms
@@ -6,9 +9,9 @@ spring:
hibernate:
ddl-auto: none
datasource:
url: jdbc:mysql://localhost:3306/qms
username: root
password: password
url: ${SPRING_DATASOURCE_URL:jdbc:mysql://localhost:3306/qms}
username: ${SPRING_DATASOURCE_USERNAME}
password: ${SPRING_DATASOURCE_PASSWORD}
servlet:
multipart:
max-file-size: 100MB
@@ -18,14 +21,14 @@ spring:
client:
registration:
google:
client-id: dummy-google-client-id
client-id: ${GOOGLE_CLIENT_ID:dummy-google-client-id}
flyway:
schemas: qms
jwt:
header-title: Authorization
token-prefix: Bearer
secret-key: a68uiaDQ0V3iLjF4DqMuS13GAVwkut55dlFbGCLyXTF
secret-key: ${JWT_SECRET_KEY}
authorities-key: USER_AUTHORITIES
token-validity-time: PT30M
tfa:
@@ -35,6 +38,6 @@ tenancy:
default-code: DFLT
notifications:
expo-url: https://exp.host/--/api/v2/push/send
mock: true
mock: ${NOTIFICATIONS_MOCK:true}
ads:
upload-dir: uploads/ads
upload-dir: ${ADS_UPLOAD_DIR:uploads/ads}