Merge config.toml and route_config.toml
This commit is contained in:
parent
8b3ce0f079
commit
da936b325e
@ -31,6 +31,13 @@ return array_merge($tomlConfig, [
|
|||||||
'base_config_dir' => __DIR__,
|
'base_config_dir' => __DIR__,
|
||||||
'config_dir' => "{$APP_DIR}/config",
|
'config_dir' => "{$APP_DIR}/config",
|
||||||
|
|
||||||
|
// Routing defaults
|
||||||
|
'asset_path' => '/public',
|
||||||
|
'default_list' => 'anime',
|
||||||
|
'default_anime_list_path' => 'watching', // watching|plan_to_watch|on_hold|dropped|completed|all
|
||||||
|
'default_manga_list_path' => 'reading', // reading|plan_to_read|on_hold|dropped|completed|all
|
||||||
|
'default_view_type' => 'cover_view', // cover_view|list_view
|
||||||
|
|
||||||
// Template file path
|
// Template file path
|
||||||
'view_path' => "{$APP_DIR}/views",
|
'view_path' => "{$APP_DIR}/views",
|
||||||
|
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# Route config
|
|
||||||
#
|
|
||||||
# Default views and paths
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# Path to public directory, where images/css/javascript are located,
|
|
||||||
# appended to the url
|
|
||||||
asset_path = "/public"
|
|
||||||
|
|
||||||
# Which list should be the default?
|
|
||||||
default_list = "anime" # anime or manga
|
|
||||||
|
|
||||||
# Default pages for anime/manga
|
|
||||||
default_anime_list_path = "watching" # watching|plan_to_watch|on_hold|dropped|completed|all
|
|
||||||
default_manga_list_path = "reading" # reading|plan_to_read|on_hold|dropped|completed|all
|
|
||||||
|
|
||||||
# Default view type (cover_view/list_view)
|
|
||||||
default_view_type = "cover_view"
|
|
@ -2,7 +2,7 @@
|
|||||||
# Cache Setup #
|
# Cache Setup #
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# See https://git.timshomepage.net/timw4mail/banker for more information
|
# See https://git.timshomepage.net/aviat/banker for more information
|
||||||
|
|
||||||
# Available drivers are apcu, memcache, memcached, redis or null
|
# Available drivers are apcu, memcache, memcached, redis or null
|
||||||
# Null cache driver means no caching
|
# Null cache driver means no caching
|
||||||
|
@ -10,3 +10,21 @@ whose_list = "Tim"
|
|||||||
|
|
||||||
# do you wish to show the anime collection?
|
# do you wish to show the anime collection?
|
||||||
show_anime_collection = true
|
show_anime_collection = true
|
||||||
|
|
||||||
|
# do you wish to show the manga collection?
|
||||||
|
show_manga_collection = false
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Default views and paths
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Path to public directory, where images/css/javascript are located,
|
||||||
|
# appended to the url
|
||||||
|
asset_path = "/public"
|
||||||
|
|
||||||
|
# Which list should be the default?
|
||||||
|
default_list = "anime" # anime or manga
|
||||||
|
|
||||||
|
# Default pages for anime/manga
|
||||||
|
default_anime_list_path = "watching" # watching|plan_to_watch|on_hold|dropped|completed|all
|
||||||
|
default_manga_list_path = "reading" # reading|plan_to_read|on_hold|dropped|completed|all
|
@ -2,7 +2,6 @@
|
|||||||
# Database Configuration #
|
# Database Configuration #
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
[collection]
|
|
||||||
type = "sqlite"
|
type = "sqlite"
|
||||||
host = ""
|
host = ""
|
||||||
user = ""
|
user = ""
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# Route config
|
|
||||||
#
|
|
||||||
# Default views and paths
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# Path to public directory, where images/css/javascript are located,
|
|
||||||
# appended to the url
|
|
||||||
asset_path = "/public"
|
|
||||||
|
|
||||||
# Which list should be the default?
|
|
||||||
default_list = "anime" # anime or manga
|
|
||||||
|
|
||||||
# Default pages for anime/manga
|
|
||||||
default_anime_list_path = "watching" # watching|plan_to_watch|on_hold|dropped|completed|all
|
|
||||||
default_manga_list_path = "reading" # reading|plan_to_read|on_hold|dropped|completed|all
|
|
||||||
|
|
@ -19,7 +19,6 @@ namespace Aviat\AnimeClient\Command;
|
|||||||
use Aviat\AnimeClient\API\{
|
use Aviat\AnimeClient\API\{
|
||||||
FailedResponseException,
|
FailedResponseException,
|
||||||
JsonAPI,
|
JsonAPI,
|
||||||
Kitsu\Transformer\MangaListTransformer,
|
|
||||||
ParallelAPIRequest
|
ParallelAPIRequest
|
||||||
};
|
};
|
||||||
use Aviat\AnimeClient\API\Anilist\Transformer\{
|
use Aviat\AnimeClient\API\Anilist\Transformer\{
|
||||||
|
Loading…
Reference in New Issue
Block a user