Skip to content

Commit

Permalink
Adding application-custom.yml for running in OS
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonHHouse committed Oct 13, 2020
1 parent eb86553 commit 52ea089
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
56 changes: 56 additions & 0 deletions application-custom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
#Copyright 2019 Jason H House
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

logging:
level:
root: INFO
spring:
profiles: custom
mvc:
async:
request-timeout: -1
resources:
cache:
cachecontrol:
max-age: 120
must-revalidate: true
cache-public: true
jpa:
database-platform: com.jasonhhouse.gaps.sql.SQLDialect
hibernate:
ddl-auto: update
datasource:
url: jdbc:sqlite:/{CUSTOM_FOLDER}/gaps.db #Change to folder that gaps has permission to read, write, and delete in.
driver-class-name: org.sqlite.JDBC
username: admin
password: admin
server:
http2:
enabled: true
port: 8484
compression:
enabled: true
mime-types: text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json
min-response-size: 1024
error:
whitelabel:
enabled: false
info:
app:
name: Gaps
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. If those movies don't exist in your library, Gaps will recommend getting those movies, legally of course.
version: 0.8.3
storageFolder: /{CUSTOM_FOLDER} #Change to folder that gaps has permission to read, write, and delete in.
properties:
rssFeed: rssFeed.json
gapsProperties: gaps.properties
movieIds: movieIds.json
ownedMovies: ownedMovies.json
recommendedMovies: recommendedMovies.json
loginEnabled: false
sslEnabled: false
1 change: 0 additions & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ docker buildx build --platform linux/arm/v7 -t housewrecker/gaps:raspbian-latest

### Making Windows/Linux/Mac Zip
mkdir -p GapsOnWindows
rm $ZIP_VERSION
rm GapsAsJar/*.jar
rm GapsAsJar/*.md
rm GapsAsJar/*.sh
Expand Down

0 comments on commit 52ea089

Please sign in to comment.