add docker compose config

This commit is contained in:
Tykayn 2023-08-28 22:31:14 +02:00 committed by tykayn
parent edbc326936
commit aae2ff8283
33 changed files with 52 additions and 0 deletions

0
.editorconfig Normal file → Executable file
View File

0
.gitignore vendored Normal file → Executable file
View File

0
.gitmodules vendored Normal file → Executable file
View File

0
LICENSE.md Normal file → Executable file
View File

2
Makefile Normal file → Executable file
View File

@ -15,3 +15,5 @@ doc:
test:
echo "run php tests"
phpunit -c tests
docker:
docker-compose up -d

0
README.md Normal file → Executable file
View File

0
composer.json Normal file → Executable file
View File

0
composer.lock generated Normal file → Executable file
View File

8
docker-compose.yml Executable file
View File

@ -0,0 +1,8 @@
version: "2"
services:
webserver:
image: php:8.2.0-apache
ports:
- "8181:80"
volumes:
- ./src:/var/www/html

9
docs/api.md Executable file
View File

@ -0,0 +1,9 @@
# API
Documentation swagger de l'api
- à produire
## Abstract
Interroger l'API CentralBrain de TeamBrain.
## Endpoints
- à produire

0
docs/architecture.md Normal file → Executable file
View File

0
docs/configuration.md Normal file → Executable file
View File

0
docs/contribute.md Normal file → Executable file
View File

29
docs/customers.md Executable file
View File

@ -0,0 +1,29 @@
# Clients de TeamBrain FAQ
- actradis
- actradis2
- actradis_choix_bulle
- baptistelemoine
- butagaz
- butagaz_model
- citec
- client_a
- cmp
- cmp.zip
- loicpoccard
- marionnaud
- marionnaud_dev
- marionnaud_magasin
- marionnaud_magasin_dev
- mgp
- mobmob
- netski
- skimium
- skiset
- snowrental
- symbiot
- teambrain_public
- test_miguel
- test_rainforest
- uphf1
- uphf2

0
docs/index.md Normal file → Executable file
View File

0
docs/roadmap.md Normal file → Executable file
View File

0
docs/security.md Normal file → Executable file
View File

0
docs/style.md Normal file → Executable file
View File

0
docs/testing.md Normal file → Executable file
View File

0
docs/translate.md Normal file → Executable file
View File

0
mkdocs.yml Normal file → Executable file
View File

0
src/assets/main.css Normal file → Executable file
View File

0
src/assets/reset.css Normal file → Executable file
View File

0
src/config/config.example.php Normal file → Executable file
View File

0
src/lang/en/en.php Normal file → Executable file
View File

0
src/lang/fr/fr.php Normal file → Executable file
View File

0
src/templates/.htaccess Normal file → Executable file
View File

0
src/templates/components/search.php Normal file → Executable file
View File

4
src/templates/index.php Normal file → Executable file
View File

@ -1,4 +1,8 @@
<?php
/**
* agrégat des templates
*/
//echo "les templates c'est ici";
include_once('components/search.php');
include_once('layout/base.php');

0
src/templates/layout/base.php Normal file → Executable file
View File

0
src/templates/pages/index.php Normal file → Executable file
View File

0
src/templates/special/404.html Normal file → Executable file
View File

0
src/tests/index.php Normal file → Executable file
View File