Compare commits
5 Commits
issue-15-i
...
feature/im
| Author | SHA1 | Date | |
|---|---|---|---|
| e19992726a | |||
| 5d039e2b63 | |||
| 5df5588b84 | |||
| 9503b13aee | |||
| 29751dda93 |
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
name: Build
|
name: Build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@@ -26,7 +27,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run composer install if composer.json exists
|
- name: Run composer install if composer.json exists
|
||||||
run: |
|
run: |
|
||||||
rm composer.lock
|
[ -f composer.lock ] && rm composer.lock
|
||||||
composer validate --no-check-publish
|
composer validate --no-check-publish
|
||||||
|
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
|
|||||||
@@ -42,8 +42,6 @@
|
|||||||
"typo3/cms-filemetadata": "^13.4",
|
"typo3/cms-filemetadata": "^13.4",
|
||||||
"typo3/cms-fluid": "^13.4",
|
"typo3/cms-fluid": "^13.4",
|
||||||
"typo3/cms-fluid-styled-content": "^13.4",
|
"typo3/cms-fluid-styled-content": "^13.4",
|
||||||
"typo3/cms-form": "^13.4",
|
|
||||||
"typo3/cms-frontend": "^13.4",
|
|
||||||
"typo3/cms-indexed-search": "^13.4",
|
"typo3/cms-indexed-search": "^13.4",
|
||||||
"typo3/cms-info": "^13.4",
|
"typo3/cms-info": "^13.4",
|
||||||
"typo3/cms-install": "^13.4",
|
"typo3/cms-install": "^13.4",
|
||||||
@@ -53,28 +51,18 @@
|
|||||||
"typo3/cms-recycler": "^13.4",
|
"typo3/cms-recycler": "^13.4",
|
||||||
"typo3/cms-redirects": "^13.4",
|
"typo3/cms-redirects": "^13.4",
|
||||||
"typo3/cms-reports": "^13.4",
|
"typo3/cms-reports": "^13.4",
|
||||||
"typo3/cms-rte-ckeditor": "^13.4",
|
|
||||||
"typo3/cms-scheduler": "^13.4",
|
|
||||||
"typo3/cms-seo": "^13.4",
|
"typo3/cms-seo": "^13.4",
|
||||||
"typo3/cms-setup": "^13.4",
|
"typo3/cms-setup": "^13.4",
|
||||||
"typo3/cms-sys-note": "^13.4",
|
"typo3/cms-sys-note": "^13.4",
|
||||||
"typo3/cms-tstemplate": "^13.4",
|
"typo3/cms-viewport": "^13.4",
|
||||||
"typo3/cms-viewpage": "^13.4",
|
|
||||||
"typo3/minimal": "^13.4",
|
"typo3/minimal": "^13.4",
|
||||||
"wapplersystems/ws-scss": "^13.0"
|
"wapplersystems/ws-scss": "^13.0",
|
||||||
|
"ichhabrecht/filefill": "^4.3.2"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"deployer/deployer": "^7.4",
|
|
||||||
"friendsoftypo3/phpstan-typo3": "^0.9",
|
|
||||||
"phpmd/phpmd": "^2.10",
|
|
||||||
"phpstan/phpstan": "^1.8",
|
|
||||||
"rector/rector": "0.13.4",
|
|
||||||
"squizlabs/php_codesniffer": "^3.6"
|
|
||||||
},
|
},
|
||||||
"scripts":{
|
"scripts":{
|
||||||
"pre-autoload-dump": [
|
|
||||||
"@php -r \"file_exists('.env') || copy('.env.local', '.env');\""
|
|
||||||
],
|
|
||||||
"typo3-cms-scripts": [
|
"typo3-cms-scripts": [
|
||||||
"typo3 install:fixfolderstructure"
|
"typo3 install:fixfolderstructure"
|
||||||
],
|
],
|
||||||
@@ -85,9 +73,6 @@
|
|||||||
"extra": {
|
"extra": {
|
||||||
"typo3/cms": {
|
"typo3/cms": {
|
||||||
"web-dir": "public"
|
"web-dir": "public"
|
||||||
},
|
|
||||||
"helhum/typo3-console": {
|
|
||||||
"install-extension-dummy": "0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
25
env.example
25
env.example
@@ -1,25 +0,0 @@
|
|||||||
TYPO3_BE_INSTALL_TOOL_PASSWORD='$2y$12$yq4Jthe0jUyf69KuOY3Udeb4yKPdE2QZ42obVCPTzhLXEcNShXXk2'
|
|
||||||
|
|
||||||
# DB
|
|
||||||
TYPO3_DB_HOST='db'
|
|
||||||
TYPO3_DB_NAME='db'
|
|
||||||
TYPO3_DB_USER='db'
|
|
||||||
TYPO3_DB_PASSWORD='db'
|
|
||||||
TYPO3_DB_UNIX_SOCKET=''
|
|
||||||
TYPO3_DB_PORT=3306
|
|
||||||
|
|
||||||
# MAIL
|
|
||||||
TYPO3_MAIL_TRANSPORT='smtp'
|
|
||||||
TYPO3_MAIL_SMTP_SERVER='localhost:1025'
|
|
||||||
TYPO3_MAIL_SMTP_ENCRYPT=''
|
|
||||||
TYPO3_MAIL_SMTP_USER=''
|
|
||||||
TYPO3_MAIL_SMTP_PASSWORD=''
|
|
||||||
|
|
||||||
# Solr
|
|
||||||
SOLR_ENABLED_READ=true
|
|
||||||
SOLR_HOST=solr
|
|
||||||
SOLR_PATH=/
|
|
||||||
SOLR_PORT=8983
|
|
||||||
SOLR_SCHEME=http
|
|
||||||
SOLR_CORE_NAME_DE=core_de
|
|
||||||
SOLR_CORE_NAME_EN=core_en
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
console.log('WE LOVE TYPO3');
|
|
||||||
|
|||||||
5
todos.md
5
todos.md
@@ -1,5 +0,0 @@
|
|||||||
pattern noch mal ansehen, meint es sieht verpixelt aus
|
|
||||||
footer soll gleich abschließen, obere elemente und datenschutz links
|
|
||||||
news grüner balken weiter hinunter damit man mehr vom bild sieht. das bild links muss dann größer aufgezogen sein damit es den platz ausfüllt
|
|
||||||
fade in on scroll funktioniert nicht wenn element schon sichtbar sein sollte
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user