From 2328e5a5742c3fbdbcb4ded8f1d294b4a20e08e0 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 27 Mar 2022 21:38:10 +0200 Subject: Commit --- app/planning/.gitlab-ci.yml | 15 ++++ app/planning/LICENSE | 21 +++++ app/planning/README.md | 8 ++ app/planning/SatteliteGiteaData.txt | 1 + app/planning/index.php | 163 ++++++++++++++++++++++++++++++++++++ 5 files changed, 208 insertions(+) create mode 100644 app/planning/.gitlab-ci.yml create mode 100644 app/planning/LICENSE create mode 100644 app/planning/README.md create mode 100644 app/planning/SatteliteGiteaData.txt create mode 100644 app/planning/index.php (limited to 'app/planning') diff --git a/app/planning/.gitlab-ci.yml b/app/planning/.gitlab-ci.yml new file mode 100644 index 0000000..4402674 --- /dev/null +++ b/app/planning/.gitlab-ci.yml @@ -0,0 +1,15 @@ +# Generic Minteck GitLab CI/CD Checks +# PHP applications +image: php:zts-buster + +cache: + paths: + - vendor/ + +before_script: + - apt-get update + - apt-get install -y git + +test: + script: + - bash -c '[[ $(find . -name \*.php -exec php -l {} \; | grep -v "No syntax errors") ]] && exit 2 || exit 0' diff --git a/app/planning/LICENSE b/app/planning/LICENSE new file mode 100644 index 0000000..318113a --- /dev/null +++ b/app/planning/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021- Minteck + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/app/planning/README.md b/app/planning/README.md new file mode 100644 index 0000000..75e1227 --- /dev/null +++ b/app/planning/README.md @@ -0,0 +1,8 @@ +# Familine Camera (wrapper) + +* Chemin d'installation attendu : `/mnt/familine/app/console` + +## Installation +1. Copiez les fichiers dans le dossier `/mnt/familine/app/console` +3. Configurez votre serveur Web pour pointer le sous-domaine `console.` vers Familine Camera (wrapper) +4. C'est prêt ! \ No newline at end of file diff --git a/app/planning/SatteliteGiteaData.txt b/app/planning/SatteliteGiteaData.txt new file mode 100644 index 0000000..91e708c --- /dev/null +++ b/app/planning/SatteliteGiteaData.txt @@ -0,0 +1 @@ +Familine Camera Wrapper \ No newline at end of file diff --git a/app/planning/index.php b/app/planning/index.php new file mode 100644 index 0000000..603bfdb --- /dev/null +++ b/app/planning/index.php @@ -0,0 +1,163 @@ + + + + + + + + Familine Planning + + + + + + + + + + + + + -- cgit