mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
aec2e7b5ac
The digest http authentication does not allow to use a password storing systems, that do not successively allow to retrieve it, even if hashed
75 lines
2.1 KiB
YAML
75 lines
2.1 KiB
YAML
build_settings:
|
|
verbose: false
|
|
prefer_symlink: false
|
|
ignore:
|
|
- "vendor"
|
|
- "tests"
|
|
- "frontend"
|
|
- "designs"
|
|
pgsql:
|
|
host: 'localhost;dbname=template1'
|
|
user: 'fhcomplete'
|
|
pass: 'fhcomplete'
|
|
setup:
|
|
shell:
|
|
- "pkill -f fhctest &"
|
|
composer:
|
|
directory: ""
|
|
action: "install"
|
|
pgsql:
|
|
- "DROP DATABASE IF EXISTS fhctest;"
|
|
shell:
|
|
- "cd %BUILD_PATH% && chmod u+x install.sh && ./install.sh fhctest" # Install Database
|
|
- "rm -f /var/www/html/build" # SymLink löschen falls vorhanden
|
|
- "ln -s %BUILD_PATH% /var/www/html/build" # SymLink to the actual build
|
|
- "php index.ci.php DBTools migrate" # DB-Migration
|
|
|
|
test:
|
|
lint:
|
|
directories:
|
|
- "application/"
|
|
recursive: true
|
|
php_loc:
|
|
# php_docblock_checker:
|
|
# path: "application/controllers/"
|
|
# allowed_warnings: 100
|
|
# skip_classes: false
|
|
php_code_sniffer:
|
|
path: "application/controllers/"
|
|
standard: "tests/codesniffer/FHComplete"
|
|
allowed_errors: 200
|
|
allowed_warnings: 200
|
|
codeception:
|
|
config: "tests/"
|
|
# php_unit:
|
|
# directory: "tests/phpunit/"
|
|
|
|
complete:
|
|
xmpp:
|
|
username: "fhcomplete"
|
|
password: "fhcomplete1q2w3blah.im"
|
|
recipients:
|
|
- "fhcomplete@darkness.su"
|
|
- "nk@jabber.at"
|
|
- "tschux@jabber.org"
|
|
- "lexdesign@blah.im"
|
|
- "tschux@jabber.at"
|
|
server: "jabber.blah.im"
|
|
tls: 1
|
|
alias: "jabber.blah.im"
|
|
date_format: "%d.%m.%Y"
|
|
clean_build:
|
|
remove:
|
|
- index.php
|
|
- config/global.config.inc.php
|
|
- config/cis.config.inc.php
|
|
- config/vilesci.config.inc.php
|
|
- config/system.config.inc.php
|
|
|
|
success:
|
|
# shell:
|
|
# - "cd %BUILD_PATH% && chmod u+x copyBuild.sh && ./copyBuild.sh" # Copy Build
|
|
# - "curl 'http://localhost/backend/Migrate/'" # DB-Installation
|
|
# - "cd /var/www/html/ && sudo -u wsp doxygen Doxyfile" # Doxygen
|
|
|