Skip to content

Commit

Permalink
Merge pull request #424 from bounswe/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mmtftr authored Oct 20, 2024
2 parents 1f3d627 + f7c5318 commit f252328
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .do/app-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ services:
envs:
- key: DB_HOST
scope: RUN_AND_BUILD_TIME
value: ${db.HOSTNAME}:${db.PORT}
value: ${programmingforum.HOSTNAME}:${programmingforum.PORT}
- key: DB_NAME
scope: RUN_AND_BUILD_TIME
value: ${db.DATABASE}
value: ${programmingforum.DATABASE}
- key: DB_USER
scope: RUN_AND_BUILD_TIME
value: ${db.USERNAME}
value: ${programmingforum.USERNAME}
- key: DB_PASSWORD
scope: RUN_AND_BUILD_TIME
value: ${db.PASSWORD}
value: ${programmingforum.PASSWORD}
- key: SPRING_PROFILES_ACTIVE
scope: RUN_AND_BUILD_TIME
value: docker
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application-docker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ server.port=8080
jwt.signing.key=413F4428472B4B6250655368566D5970337336763979244226452948404D6351

spring.application.name=cuisines
spring.datasource.url=jdbc:mysql://${DB_HOST}:3306/${DB_NAME}?createDatabaseIfNotExist=true
spring.datasource.url=jdbc:mysql://${DB_HOST}/${DB_NAME}?createDatabaseIfNotExist=true
spring.datasource.username=${DB_USER}
spring.datasource.password=${DB_PASSWORD}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
Expand Down
4 changes: 1 addition & 3 deletions mobile/eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
"production": {}
},
"submit": {
"production": {
"autoIncrement": true
}
"production": {}
}
}
3 changes: 2 additions & 1 deletion mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"test": "jest --watchAll",
"lint": "expo lint",
"generate:api": "openapi-codegen gen programmingForum",
"watch:api": "nodemon --watch '../swagger/openapi.yml' --exec 'yarn generate:api'"
"watch:api": "nodemon --watch '../swagger/openapi.yml' --exec 'yarn generate:api'",
"eas-build-pre-install": "corepack enable"
},
"jest": {
"preset": "jest-expo"
Expand Down

0 comments on commit f252328

Please sign in to comment.