various fixes
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
vendor/
|
||||
var/
|
||||
.env.local
|
||||
.env
|
||||
.env.*.local
|
||||
/public/assets/
|
||||
/assets/vendor/
|
||||
|
||||
@@ -8,7 +8,4 @@ MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
|
||||
|
||||
MAILER_DSN=null://null
|
||||
|
||||
TMDB_API_TOKEN=
|
||||
|
||||
SERVER_NAME=
|
||||
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,5 @@
|
||||
###> symfony/framework-bundle ###
|
||||
/.env.local
|
||||
/.env
|
||||
/.env.local.php
|
||||
/.env.*.local
|
||||
/.env
|
||||
|
||||
6
Makefile
6
Makefile
@@ -52,6 +52,12 @@ symfony\:secrets-set: ## Ajoute un secret Symfony (ex: make symfony:secrets-set
|
||||
symfony\:console: ## Lance une commande Symfony (ex: make symfony:console CMD="cache:clear")
|
||||
docker compose exec app php bin/console $(CMD)
|
||||
|
||||
php\:console: ## Lance bin/console avec arguments (ex: make php:console -- cache:clear --env=prod)
|
||||
docker compose exec app php bin/console $(filter-out $@,$(MAKECMDGOALS))
|
||||
|
||||
%:
|
||||
@:
|
||||
|
||||
symfony\:cache-clear: ## Vide le cache Symfony
|
||||
docker compose exec app php bin/console cache:clear
|
||||
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
<a href="{{ path('app_homepage') }}" class="navbar-brand">Actorle</a>
|
||||
</div>
|
||||
<div class="navbar-right">
|
||||
{# Gitea repo #}
|
||||
<a href="https://git.lclr.dev/thibaud-lclr/ltbxd-actorle" class="navbar-icon" target="_blank" rel="noopener noreferrer" title="Code source">
|
||||
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polyline points="16 18 22 12 16 6"/>
|
||||
<polyline points="8 6 2 12 8 18"/>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
{# Notifications #}
|
||||
<div class="navbar-item" data-controller="dropdown">
|
||||
<button class="navbar-icon" data-action="click->dropdown#toggle click->notifications#markRead" data-dropdown-target="trigger">
|
||||
@@ -64,6 +72,12 @@
|
||||
<a href="{{ path('app_homepage') }}" class="navbar-brand">Actorle</a>
|
||||
</div>
|
||||
<div class="navbar-right">
|
||||
<a href="https://git.lclr.dev/thibaud-lclr/ltbxd-actorle" class="navbar-icon" target="_blank" rel="noopener noreferrer" title="Code source">
|
||||
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<polyline points="16 18 22 12 16 6"/>
|
||||
<polyline points="8 6 2 12 8 18"/>
|
||||
</svg>
|
||||
</a>
|
||||
<a href="{{ path('app_login') }}" class="btn btn-primary">Se connecter</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user