Skip to content

Commit

Permalink
add application.properties to gitignore
Browse files Browse the repository at this point in the history
Signed-off-by: Sayan Biswas <me@sayanbiswas.in>
  • Loading branch information
Dank-del committed Apr 28, 2023
1 parent 5d3bc80 commit 4c3f893
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ build/

### VS Code ###
.vscode/


### config ###
*.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ spring.datasource.password= 098zxc
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation= true
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
spring.jpa.properties.hibernate.globally_quoted_identifiers_skip_column_definitions=true
spring.jpa.properties.hibernate.event.merge.entity_copy_observer=allow

# Hibernate ddl auto (create, create-drop, validate, update)
Expand All @@ -13,3 +14,12 @@ spring.jpa.hibernate.ddl-auto= update
# App Properties
myAnimeLounge.app.jwtSecret= bezKoderSecretKey
myAnimeLounge.app.jwtExpirationMs= 86400000

###### Email Properties ######
# smtp mail properties
spring.mail.host=smtp.gmail.com
spring.mail.port=587
spring.mail.username=homo@uwu.com
spring.mail.password=ewoejwejwoejwoejwo
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true

0 comments on commit 4c3f893

Please sign in to comment.