Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f87ed32f6f | |||
| 1454b9bfc8 | |||
| e299eb59ad | |||
| b6b82e1631 | |||
| a8bcc7ae43 | |||
| f2365c08e9 |
@@ -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
@@ -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
|
||||||
|
|||||||
@@ -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)%'
|
||||||
|
|||||||
Reference in New Issue
Block a user