6 Commits

Author SHA1 Message Date
8d3eced5e4 add new test.sql
All checks were successful
Build / build (push) Successful in 8m22s
Build / deploy-stage (push) Successful in 3m12s
Build / deploy-production (push) Successful in 2m50s
Build / switch-stage (push) Successful in 2m39s
2025-03-05 23:48:08 +01:00
88b411e1bd add env.example
Some checks are pending
Build / build (push) Waiting to run
Build / deploy-stage (push) Blocked by required conditions
Build / switch-stage (push) Blocked by required conditions
Build / deploy-production (push) Blocked by required conditions
2025-03-05 23:43:55 +01:00
5d039e2b63 Merge pull request 'Fix: Remove unwanted console log' (#14) from fix/unwanted-console-log into main
All checks were successful
Build / build (push) Successful in 4m5s
Build / deploy-stage (push) Successful in 3m2s
Build / switch-stage (push) Successful in 1m58s
Build / deploy-production (push) Successful in 2m51s
Reviewed-on: #14
2024-12-29 03:34:42 +01:00
5df5588b84 fix: remove unwanted console log
All checks were successful
Build / build (pull_request) Successful in 3m8s
2024-12-29 03:30:49 +01:00
9503b13aee Merge pull request 'Fix: Make composer.lock removal conditional' (#13) from fix/gitea-build-action into main
Some checks failed
Build / switch-stage (push) Blocked by required conditions
Build / build (push) Successful in 5m43s
Build / deploy-stage (push) Has been cancelled
Build / deploy-production (push) Has been cancelled
Reviewed-on: #13
2024-12-29 03:28:05 +01:00
29751dda93 fix: make composer.lock removal conditional
All checks were successful
Build / build (pull_request) Successful in 2m49s
2024-12-29 03:13:04 +01:00
4 changed files with 3563 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
name: Build
on:
@@ -26,7 +27,7 @@ jobs:
- name: Run composer install if composer.json exists
run: |
rm composer.lock
[ -f composer.lock ] && rm composer.lock
composer validate --no-check-publish
- name: Set up Node.js

25
env.example Normal file
View File

@@ -0,0 +1,25 @@
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

View File

@@ -1 +0,0 @@
console.log('WE LOVE TYPO3');

3536
test.sql Normal file

File diff suppressed because one or more lines are too long