Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.gitignore #27

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ build/
!**/src/main/**/build/
!**/src/test/**/build/


!**/src/main/resources/application-dev.properties
### VS Code ###
.vscode/
2 changes: 1 addition & 1 deletion src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring.ldap.urls=rls=https://sistemas.udea.edu.co/api/ldap/login/{username}
#config data base
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=Tascon1234W%
spring.datasource.password=
spring.datasource.url=jdbc:mysql://localhost:3306/console_lis?allowPublicKeyRetrieval=true&useSSL=false
springdoc.default-produces-media-type=application/json
spring.jpa.show-sql=true
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring.ldap.urls=rls=https://sistemas.udea.edu.co/api/ldap/login/{username}
#config data base
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=c0ns0l3ll1s
spring.datasource.password=c0ns0l3l1s
spring.datasource.url=jdbc:mysql://localhost:33060/console_lis?allowPublicKeyRetrieval=true&useSSL=false
springdoc.default-produces-media-type=application/json
spring.jpa.show-sql=true
Expand Down
Loading