Skip to content

Commit

Permalink
Fix nav & adapt .env for Mercure docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarzybok-sumoheavy committed Sep 21, 2023
1 parent 9f07d97 commit 92c579e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
###> symfony/mercure-bundle ###
# See https://symfony.com/doc/current/mercure.html#configuration
# The URL of the Mercure hub, used by the app to publish updates (can be a local URL)
MERCURE_URL=https://example.com/.well-known/mercure
MERCURE_URL=http://mercure/.well-known/mercure
# The public URL of the Mercure hub, used by the browser to connect
MERCURE_PUBLIC_URL=https://example.com/.well-known/mercure
MERCURE_PUBLIC_URL=http://localhost:1337/.well-known/mercure
# The secret used to sign the JWTs
MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
###< symfony/mercure-bundle ###
Expand Down
2 changes: 1 addition & 1 deletion templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</head>
<body>

<div id="main" class="row">
<div id="main">

<div id="snackbars" class="fixed top-10 right-10 w-80 space-y-5">
<div aria-live="assertive" id="snackbar-template" class="invisible pointer-events-none fixed inset-0 flex items-end px-4 py-6 sm:items-start sm:p-6">
Expand Down
2 changes: 1 addition & 1 deletion templates/navigation.html.twig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<nav class="border-b border-gray-200 bg-white">
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div class="mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex h-16 justify-between">
<div class="flex">
<a href="/" class="flex flex-shrink-0 items-center">
Expand Down

0 comments on commit 92c579e

Please sign in to comment.