add docker compose config
This commit is contained in:
parent
edbc326936
commit
aae2ff8283
0
.editorconfig
Normal file → Executable file
0
.editorconfig
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
.gitmodules
vendored
Normal file → Executable file
0
.gitmodules
vendored
Normal file → Executable file
0
LICENSE.md
Normal file → Executable file
0
LICENSE.md
Normal file → Executable file
2
Makefile
Normal file → Executable file
2
Makefile
Normal file → Executable file
@ -15,3 +15,5 @@ doc:
|
|||||||
test:
|
test:
|
||||||
echo "run php tests"
|
echo "run php tests"
|
||||||
phpunit -c tests
|
phpunit -c tests
|
||||||
|
docker:
|
||||||
|
docker-compose up -d
|
||||||
|
0
composer.json
Normal file → Executable file
0
composer.json
Normal file → Executable file
0
composer.lock
generated
Normal file → Executable file
0
composer.lock
generated
Normal file → Executable file
8
docker-compose.yml
Executable file
8
docker-compose.yml
Executable 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
9
docs/api.md
Executable 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
0
docs/architecture.md
Normal file → Executable file
0
docs/configuration.md
Normal file → Executable file
0
docs/configuration.md
Normal file → Executable file
0
docs/contribute.md
Normal file → Executable file
0
docs/contribute.md
Normal file → Executable file
29
docs/customers.md
Executable file
29
docs/customers.md
Executable 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
0
docs/index.md
Normal file → Executable file
0
docs/roadmap.md
Normal file → Executable file
0
docs/roadmap.md
Normal file → Executable file
0
docs/security.md
Normal file → Executable file
0
docs/security.md
Normal file → Executable file
0
docs/style.md
Normal file → Executable file
0
docs/style.md
Normal file → Executable file
0
docs/testing.md
Normal file → Executable file
0
docs/testing.md
Normal file → Executable file
0
docs/translate.md
Normal file → Executable file
0
docs/translate.md
Normal file → Executable file
0
mkdocs.yml
Normal file → Executable file
0
mkdocs.yml
Normal file → Executable file
0
src/assets/main.css
Normal file → Executable file
0
src/assets/main.css
Normal file → Executable file
0
src/assets/reset.css
Normal file → Executable file
0
src/assets/reset.css
Normal file → Executable file
0
src/config/config.example.php
Normal file → Executable file
0
src/config/config.example.php
Normal file → Executable file
0
src/lang/en/en.php
Normal file → Executable file
0
src/lang/en/en.php
Normal file → Executable file
0
src/lang/fr/fr.php
Normal file → Executable file
0
src/lang/fr/fr.php
Normal file → Executable file
0
src/templates/.htaccess
Normal file → Executable file
0
src/templates/.htaccess
Normal file → Executable file
0
src/templates/components/search.php
Normal file → Executable file
0
src/templates/components/search.php
Normal file → Executable file
4
src/templates/index.php
Normal file → Executable file
4
src/templates/index.php
Normal file → Executable file
@ -1,4 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* agrégat des templates
|
||||||
|
*/
|
||||||
|
//echo "les templates c'est ici";
|
||||||
|
|
||||||
include_once('components/search.php');
|
include_once('components/search.php');
|
||||||
include_once('layout/base.php');
|
include_once('layout/base.php');
|
||||||
|
0
src/templates/layout/base.php
Normal file → Executable file
0
src/templates/layout/base.php
Normal file → Executable file
0
src/templates/pages/index.php
Normal file → Executable file
0
src/templates/pages/index.php
Normal file → Executable file
0
src/templates/special/404.html
Normal file → Executable file
0
src/templates/special/404.html
Normal file → Executable file
0
src/tests/index.php
Normal file → Executable file
0
src/tests/index.php
Normal file → Executable file
Loading…
Reference in New Issue
Block a user