revert f4fcd2bbb74b983aaed3fe9f359638965fccae41

revert Made app production ready
This commit is contained in:
Max W. 2024-02-21 22:14:12 +00:00
parent f4fcd2bbb7
commit 7ca9dad44b
2 changed files with 10 additions and 9 deletions

View File

@ -5,7 +5,7 @@ plugins {
} }
group = 'de.w665' group = 'de.w665'
version = '1.0.0' version = '0.0.2'
java { java {
sourceCompatibility = '21' sourceCompatibility = '21'

View File

@ -6,9 +6,16 @@ sharepulse.fileid.charset=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01
sharepulse.filepassword.length=6 sharepulse.filepassword.length=6
sharepulse.filepassword.charset=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 sharepulse.filepassword.charset=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
# Static path
spring.web.resources.static-locations=classpath:/static/browser/
# Rest API path prefix # Rest API path prefix
spring.data.rest.base-path=/api/v1 spring.data.rest.base-path=/api/v1
# Upload size overwrite
spring.servlet.multipart.max-file-size=1GB
spring.servlet.multipart.max-request-size=1GB
# Database # Database
rethinkdb.host=localhost rethinkdb.host=localhost
rethinkdb.port=28015 rethinkdb.port=28015
@ -19,13 +26,7 @@ server.port=80
spring.application.name=sharepulse spring.application.name=sharepulse
# Spring profiles (Options: development, production) (Controls cors) # Spring profiles (Options: development, production) (Controls cors)
spring.profiles.active=production spring.profiles.active=development
# Logging # Logging
logging.level.de.w665.sharepulse=INFO logging.level.de.w665.sharepulse=DEBUG
# Static path
spring.web.resources.static-locations=classpath:/static/browser/
# Upload size overwrite
spring.servlet.multipart.max-file-size=1GB
spring.servlet.multipart.max-request-size=1GB