6 Commits

3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,3 @@
# Plateforme web pour les adhérents KAZ # Plateforme web pour les adhérents KAZ
## Objectif ## Objectif
@@ -11,6 +10,7 @@ Cette application web permet aux adhérents de l'association KAZ de gérer leur
## Architecture technique ## Architecture technique
- **Frontend** : [Twig](https://twig.symfony.com/) + [Tailwind CSS](https://tailwindcss.com/) - **Frontend** : [Twig](https://twig.symfony.com/) + [Tailwind CSS](https://tailwindcss.com/)
- **Documentation installation Tailwind** : [Plus d'infos ici](https://tailwindcss.com/docs/installation/framework-guides/symfony)
- **Backend** : PHP 8.4 / [Symfony](https://symfony.com/) - **Backend** : PHP 8.4 / [Symfony](https://symfony.com/)
- **Base de données** : [PostgreSQL](https://www.postgresql.org/) - **Base de données** : [PostgreSQL](https://www.postgresql.org/)
- **Intégration** : Communication via API avec les outils de KAZ (notamment OpenLDAP). - **Intégration** : Communication via API avec les outils de KAZ (notamment OpenLDAP).
+1 -1
View File
@@ -3,7 +3,7 @@ services:
database: database:
image: postgres:${POSTGRES_VERSION:-16}-alpine image: postgres:${POSTGRES_VERSION:-16}-alpine
ports: ports:
- "5432" - "5432:5432"
environment: environment:
POSTGRES_DB: ${POSTGRES_DB:-app} POSTGRES_DB: ${POSTGRES_DB:-app}
# You should definitely change the password in production # You should definitely change the password in production
+1 -1
View File
@@ -7,7 +7,7 @@ services:
App\: App\:
resource: '../src/' resource: '../src/'
App\Service\KazApiClient: App\Service\KazApiService:
arguments: arguments:
$kazApiClient: '@kaz_api.client' $kazApiClient: '@kaz_api.client'
$apiUser: '%env(KAZ_API_USER)%' $apiUser: '%env(KAZ_API_USER)%'