-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
156 changed files
with
19,904 additions
and
2,203 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
## Description: Backup db | ||
## Usage: db-backup | ||
## Example: "ddev db-backup" | ||
|
||
ddev exec mkdir -p ./.ddev/backup | ||
|
||
ddev exec rm -f ./.ddev/backup/mysql-db.sql.gz | ||
|
||
ddev export-db -f ./.ddev/backup/mysql-db.sql.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
## Description: Restore db | ||
## Usage: db-restore | ||
## Example: "ddev db-restore" | ||
|
||
ddev import-db --src=./.ddev/backup/mysql-db.sql.gz | ||
|
||
ddev typo3cms database:updateschema |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
## Description: Backup fileadmin folder | ||
## Usage: fileadmin-backup | ||
## Example: "ddev fileadmin-backup" | ||
|
||
ddev exec mkdir -p ./.ddev/backup | ||
|
||
ddev exec rm -f ./.ddev/backup/fileadmin.tar.gz | ||
|
||
ddev exec tar -czvf ./.ddev/backup/fileadmin.tar.gz --exclude="_processed_" ./public/fileadmin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
## Description: Restore fileadmin folder | ||
## Usage: fileadmin-restore | ||
## Example: "ddev fileadmin-restore" | ||
|
||
ddev exec mv ./public/fileadmin ./public/fileadmin-org | ||
|
||
ddev exec tar -xzvf ./.ddev/backup/fileadmin.tar.gz | ||
|
||
ddev typo3cms cache:flush | ||
|
||
ddev typo3cms database:updateschema | ||
|
||
ddev exec rm -rf ./public/fileadmin-org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
# This assumes that the rector command will be in vendor/bin/ | ||
|
||
## Description: Run rector command | ||
## Usage: rector [args] | ||
## Example: "ddev rector process packages/my-extension --dry-run" | ||
|
||
ddev exec ./vendor/bin/rector "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
alias ls="ls -lhA" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
TYPO3_CONTEXT= | ||
INSTANCE= | ||
|
||
# Site | ||
SITE_BASE= | ||
|
||
# System | ||
TYPO3_TRUSTED_HOST_PATTERN= | ||
TYPO3_DISPLAY_ERRORS= | ||
|
||
# Database Credentials | ||
TYPO3__DB__Connections__Default__dbname= | ||
TYPO3__DB__Connections__Default__host= | ||
TYPO3__DB__Connections__Default__password= | ||
TYPO3__DB__Connections__Default__port= | ||
TYPO3__DB__Connections__Default__user= | ||
|
||
# Graphics | ||
TYPO3_GFX_PROCESSOR= | ||
TYPO3_GFX_PROCESSOR_PATH= | ||
TYPO3_GFX_PROCESSOR_PATH_LZW= | ||
|
||
TYPO3_MAIL_TRANSPORT= | ||
TYPO3_MAIL_TRANSPORT_SMTP_SERVER= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Create Release | ||
|
||
on: | ||
push: | ||
# Push events to matching v*, i.e. v1.0, v20.15.10 | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: changelog | ||
uses: scottbrenner/generate-changelog-action@master | ||
id: Changelog | ||
env: | ||
REPO: ${{ github.repository }} | ||
- name: Set output | ||
id: vars | ||
run: echo ::set-output name=tag::${GITHUB_REF:10} | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
with: | ||
tag_name: ${{ steps.vars.outputs.tag }} | ||
release_name: Release ${{ steps.vars.outputs.tag }} | ||
body: | | ||
${{ steps.Changelog.outputs.changelog }} | ||
draft: false | ||
prerelease: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "packages/klaro_video"] | ||
path = packages/klaro_video | ||
url = https://github.com/Starraider/klaro_video.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 4, | ||
"semi": false, | ||
"singleQuote": true, | ||
"arrowParens": "avoid", | ||
"overrides": [ | ||
{ | ||
"files": "*.js", | ||
"options": { | ||
"semi": false, | ||
"tabWidth": 2, | ||
"useTabs": false | ||
} | ||
}, | ||
{ | ||
"files": ["*.json"], | ||
"options": { | ||
"tabWidth": 4, | ||
"useTabs": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
/** | ||
* PHP CS Fixer | ||
* Use composer intalled php-cs-fixer | ||
**/ | ||
"php-cs-fixer.onsave": true, | ||
"php-cs-fixer.showOutput": true, | ||
"php-cs-fixer.executablePath": "${workspaceFolder}/vendor/bin/php-cs-fixer", | ||
"php-cs-fixer.autoFixByBracket": true, | ||
"php-cs-fixer.formatHtml": true, | ||
|
||
/** | ||
* PHPStan | ||
**/ | ||
"phpstan.enabled": true, | ||
//"phpstan.path": null, | ||
"phpstan.level": "max", | ||
"phpstan.memoryLimit": "2048M", | ||
"phpstan.projectFile": "${workspaceFolder}/phpstan.neon", | ||
"phpstan.excludeFiles": [], | ||
"phpstan.options": [], | ||
|
||
/** | ||
* Prettier | ||
**/ | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"prettier.requireConfig": true, | ||
"prettier.useEditorConfig": false, | ||
// Disable ESLint, because we use Prettier | ||
"eslint.enable": false, | ||
|
||
"restructuredtext.languageServer.disabled": true, | ||
"workbench.activityBar.visible": false | ||
} |
Oops, something went wrong.