From f619c78232c4373415b510a26de9bf4f92723f97 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Wed, 11 Jan 2017 22:26:43 -0500 Subject: [PATCH] Update config files --- app/config/cache.toml.example | 4 ++++ app/config/config.toml.example | 5 +---- app/config/mal.toml.example | 6 ++++++ app/config/redis.toml.example | 16 ---------------- 4 files changed, 11 insertions(+), 20 deletions(-) create mode 100644 app/config/mal.toml.example delete mode 100644 app/config/redis.toml.example diff --git a/app/config/cache.toml.example b/app/config/cache.toml.example index 283f45fa..8822d336 100644 --- a/app/config/cache.toml.example +++ b/app/config/cache.toml.example @@ -2,6 +2,10 @@ # Cache Setup # ################################################################################ +# See https://git.timshomepage.net/timw4mail/banker for more information + +# Available drivers are memcache, memcached, redis or null +# Null cache driver means no caching driver = "redis" [connection] diff --git a/app/config/config.toml.example b/app/config/config.toml.example index 0f3b679e..15637e7a 100644 --- a/app/config/config.toml.example +++ b/app/config/config.toml.example @@ -3,7 +3,7 @@ ################################################################################ # Username for anime and manga lists -hummingbird_username = "timw4mail" +kitsu_username = "timw4mail" # Whose list is it? whose_list = "Tim" @@ -14,8 +14,5 @@ show_anime_collection = true # do you wish to show the manga collection? show_manga_collection = false -# cache driver for api calls (NullDriver, SQLDriver, RedisDriver) -cache_driver = "NullDriver" - # path to public directory on the server asset_dir = "/../../public" \ No newline at end of file diff --git a/app/config/mal.toml.example b/app/config/mal.toml.example new file mode 100644 index 00000000..0e3233e0 --- /dev/null +++ b/app/config/mal.toml.example @@ -0,0 +1,6 @@ +################################################################################ +# My Anime LIst Integration Config # +################################################################################ + +username = "timw4mail" +password = "mysecretpassword" \ No newline at end of file diff --git a/app/config/redis.toml.example b/app/config/redis.toml.example deleted file mode 100644 index a3f7b996..00000000 --- a/app/config/redis.toml.example +++ /dev/null @@ -1,16 +0,0 @@ -################################################################################ -# Redis Cache Configuration # -################################################################################ - -# Host or socket to connect to -# Socket must be prefixed with 'unix:' -host = "127.0.0.1" - -# Connection port -#port = 6379 - -# Connection password -#password = "" - -# Database number -database = 13 \ No newline at end of file