Skip to content

Commit

Permalink
#241 Reverted previous commit, didn't work as expected.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wotuu committed Jun 13, 2020
1 parent b12a9de commit 447f080
Show file tree
Hide file tree
Showing 53 changed files with 1,258 additions and 336 deletions.
2 changes: 1 addition & 1 deletion config/broadcasting.php
Expand Up @@ -42,7 +42,7 @@

'redis' => [
'driver' => 'redis',
'connection' => 'redis_db',
'connection' => 'default',
],

'log' => [
Expand Down
4 changes: 2 additions & 2 deletions config/cache.php
Expand Up @@ -72,7 +72,7 @@

'redis' => [
'driver' => 'redis',
'connection' => 'redis_db',
'connection' => 'default',
],

],
Expand All @@ -91,7 +91,7 @@
'prefix' => env('CACHE_PREFIX', Str::slug(
sprintf('%s-%s-cache',
env('APP_NAME', 'laravel'), env('APP_TYPE')),
'-'
'-'
)
),

Expand Down
4 changes: 1 addition & 3 deletions config/database.php
Expand Up @@ -122,8 +122,7 @@
|
*/

'redis_db' => [

'redis' => [
'client' => 'predis',

'default' => [
Expand All @@ -139,6 +138,5 @@
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DB', 0),
],

],
];
2 changes: 1 addition & 1 deletion config/debugbar.php
Expand Up @@ -35,7 +35,7 @@
'enabled' => true,
'driver' => 'file', // redis, file, pdo, custom
'path' => storage_path('debugbar'), // For file driver
'connection' => 'redis_db', // Leave null for default connection (Redis/PDO)
'connection' => null, // Leave null for default connection (Redis/PDO)
'provider' => '' // Instance of StorageInterface for custom driver
],

Expand Down
8 changes: 4 additions & 4 deletions config/horizon.php
Expand Up @@ -141,14 +141,14 @@
'environments' => [
'production' => [
'supervisor-default' => [
'connection' => 'redis_db',
'connection' => 'redis',
'queue' => [sprintf('%s-production-default', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
'tries' => 3,
],
'supervisor-thumbnail' => [
'connection' => 'redis_db',
'connection' => 'redis',
'queue' => [sprintf('%s-production-thumbnail', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
Expand All @@ -158,14 +158,14 @@

'local' => [
'supervisor-default' => [
'connection' => 'redis_db',
'connection' => 'redis',
'queue' => [sprintf('%s-local-default', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
'tries' => 3,
],
'supervisor-thumbnail' => [
'connection' => 'redis_db',
'connection' => 'redis',
'queue' => [sprintf('%s-local-thumbnail', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
Expand Down
2 changes: 1 addition & 1 deletion config/queue.php
Expand Up @@ -59,7 +59,7 @@

'redis' => [
'driver' => 'redis',
'connection' => 'redis_db',
'connection' => 'default',
'queue' => env('REDIS_QUEUE', sprintf('%s-%s-default', env('APP_TYPE'), env('APP_ENV'))),
'retry_after' => 90,
],
Expand Down
2 changes: 1 addition & 1 deletion config/session.php
Expand Up @@ -70,7 +70,7 @@
|
*/

'connection' => 'redis_db',
'connection' => null,

/*
|--------------------------------------------------------------------------
Expand Down
40 changes: 32 additions & 8 deletions database/seeds/releases/v1.0.1.json
Expand Up @@ -2,8 +2,8 @@
"id": 2,
"release_changelog_id": 2,
"version": "v1.0.1",
"created_at": "2018-10-08T16:16:06.000000Z",
"updated_at": "2018-10-08T16:16:06.000000Z",
"created_at": "2018-10-08T14:16:06.000000Z",
"updated_at": "2018-10-08T14:16:06.000000Z",
"changelog": {
"id": 2,
"release_id": 2,
Expand All @@ -13,37 +13,61 @@
"release_changelog_id": 2,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "You can now delete any route you created from your Profile page."
"change": "You can now delete any route you created from your Profile page.",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 2,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "Route rating is now rounded to the nearest two decimal spaces."
"change": "Route rating is now rounded to the nearest two decimal spaces.",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 2,
"release_changelog_category_id": 3,
"ticket_id": null,
"change": "Removed the 'hold ctrl + scroll to zoom' message and functionality. Your mouse wheel is free!"
"change": "Removed the 'hold ctrl + scroll to zoom' message and functionality. Your mouse wheel is free!",
"category": {
"id": 3,
"category": "Map changes"
}
},
{
"release_changelog_id": 2,
"release_changelog_category_id": 5,
"ticket_id": null,
"change": "Raid markers can now again be assigned to enemies for your route."
"change": "Raid markers can now again be assigned to enemies for your route.",
"category": {
"id": 5,
"category": "Bugfixes"
}
},
{
"release_changelog_id": 2,
"release_changelog_category_id": 5,
"ticket_id": null,
"change": "Guest viewers of your route can now see the killzones and route you made through the dungeon (view was restricted to author of route)."
"change": "Guest viewers of your route can now see the killzones and route you made through the dungeon (view was restricted to author of route).",
"category": {
"id": 5,
"category": "Bugfixes"
}
},
{
"release_changelog_id": 2,
"release_changelog_category_id": 5,
"ticket_id": null,
"change": "You can no longer select multiple kill zones at once."
"change": "You can no longer select multiple kill zones at once.",
"category": {
"id": 5,
"category": "Bugfixes"
}
}
]
}
Expand Down
34 changes: 27 additions & 7 deletions database/seeds/releases/v1.0.2.json
Expand Up @@ -2,8 +2,8 @@
"id": 3,
"release_changelog_id": 7,
"version": "v1.0.2",
"created_at": "2018-10-09T16:16:06.000000Z",
"updated_at": "2018-10-09T16:16:06.000000Z",
"created_at": "2018-10-09T14:16:06.000000Z",
"updated_at": "2018-10-09T14:16:06.000000Z",
"changelog": {
"id": 7,
"release_id": 3,
Expand All @@ -13,31 +13,51 @@
"release_changelog_id": 7,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "Your routes are now unpublished by default. You have to publish them in order to have them show up in the search and to have other people see your route."
"change": "Your routes are now unpublished by default. You have to publish them in order to have them show up in the search and to have other people see your route.",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 7,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "Route search can no longer sort on rating as it was broken. I will fix this at a later stage."
"change": "Route search can no longer sort on rating as it was broken. I will fix this at a later stage.",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 7,
"release_changelog_category_id": 4,
"ticket_id": null,
"change": "Fixed some inconsistencies with Saurids in the middle part of the dungeon."
"change": "Fixed some inconsistencies with Saurids in the middle part of the dungeon.",
"category": {
"id": 4,
"category": "Mapping changes"
}
},
{
"release_changelog_id": 7,
"release_changelog_category_id": 4,
"ticket_id": null,
"change": "Fixed a host of issues in Shrine of the Storm."
"change": "Fixed a host of issues in Shrine of the Storm.",
"category": {
"id": 4,
"category": "Mapping changes"
}
},
{
"release_changelog_id": 7,
"release_changelog_category_id": 4,
"ticket_id": null,
"change": "Fixed map comments not showing up for logged in users."
"change": "Fixed map comments not showing up for logged in users.",
"category": {
"id": 4,
"category": "Mapping changes"
}
}
]
}
Expand Down
64 changes: 52 additions & 12 deletions database/seeds/releases/v1.0.3.json
Expand Up @@ -2,8 +2,8 @@
"id": 4,
"release_changelog_id": 8,
"version": "v1.0.3",
"created_at": "2018-10-11T16:16:06.000000Z",
"updated_at": "2018-10-11T16:16:06.000000Z",
"created_at": "2018-10-11T14:16:06.000000Z",
"updated_at": "2018-10-11T14:16:06.000000Z",
"changelog": {
"id": 8,
"release_id": 4,
Expand All @@ -13,61 +13,101 @@
"release_changelog_id": 8,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "You can now edit your route's title."
"change": "You can now edit your route's title.",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "You can no longer rate your own routes (I saw you rate your own routes a 10\/10!)."
"change": "You can no longer rate your own routes (I saw you rate your own routes a 10\/10!).",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "Polished the layout of the website, mainly focussed on mobile users."
"change": "Polished the layout of the website, mainly focussed on mobile users.",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "There's now some feedback on your actions on the website (success\/failure of actions)."
"change": "There's now some feedback on your actions on the website (success\/failure of actions).",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 1,
"ticket_id": null,
"change": "Improved performance of Routes page."
"change": "Improved performance of Routes page.",
"category": {
"id": 1,
"category": "General changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 3,
"ticket_id": null,
"change": "Height is now auto-adjusted to your device's viewport rather than a fixed value."
"change": "Height is now auto-adjusted to your device's viewport rather than a fixed value.",
"category": {
"id": 3,
"category": "Map changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 4,
"ticket_id": null,
"change": "Atal'Dazar <ul> <li> Shadowblade Stalker near the beginning is now marked as a patrol. <\/li> <li> Added a missing pack of Saurids on the way to Priestess Alun'za. <\/li> <li> Gilded Priestesses at Priestess Alun'za are no longer linked. <\/li> <\/ul>"
"change": "Atal'Dazar <ul> <li> Shadowblade Stalker near the beginning is now marked as a patrol. <\/li> <li> Added a missing pack of Saurids on the way to Priestess Alun'za. <\/li> <li> Gilded Priestesses at Priestess Alun'za are no longer linked. <\/li> <\/ul>",
"category": {
"id": 4,
"category": "Mapping changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 4,
"ticket_id": null,
"change": "The MOTHERLODE!! <ul> <li> Stonefuries before Taskmaster Askari are now linked. <\/li> <li> Numerous corrections to The D.M.Z. before the last boss (missing bombs, slightly off locations). <\/li> <\/ul>"
"change": "The MOTHERLODE!! <ul> <li> Stonefuries before Taskmaster Askari are now linked. <\/li> <li> Numerous corrections to The D.M.Z. before the last boss (missing bombs, slightly off locations). <\/li> <\/ul>",
"category": {
"id": 4,
"category": "Mapping changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 4,
"ticket_id": null,
"change": "The Underrot <ul> <li> Added a missing pack of 2 patrolling Diseased Lashes between the first and second boss. <\/li> <\/ul>"
"change": "The Underrot <ul> <li> Added a missing pack of 2 patrolling Diseased Lashes between the first and second boss. <\/li> <\/ul>",
"category": {
"id": 4,
"category": "Mapping changes"
}
},
{
"release_changelog_id": 8,
"release_changelog_category_id": 4,
"ticket_id": null,
"change": "Tol Dagor<ul> <li> Pack of Stringing Swarmers right after the first boss was duplicated (two mobs inside eachother). The duplicated enemies have been removed. <\/li> <\/ul>"
"change": "Tol Dagor<ul> <li> Pack of Stringing Swarmers right after the first boss was duplicated (two mobs inside eachother). The duplicated enemies have been removed. <\/li> <\/ul>",
"category": {
"id": 4,
"category": "Mapping changes"
}
}
]
}
Expand Down

0 comments on commit 447f080

Please sign in to comment.