Skip to content

Commit

Permalink
[TASK] Use version specific urls in dev setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwemer committed Nov 3, 2023
1 parent 77077c6 commit 4fc5e40
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .ddev/config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: powermail
name: powermail-v11
type: typo3
docroot: .Build/Web/
php_version: "8.0"
Expand All @@ -17,7 +17,7 @@ hooks:
post-start:
- exec: composer install
- exec: cp .ddev/typo3/AdditionalConfiguration.php .Build/Web/typo3conf/
host_db_port: "28262"
host_db_port: "39699"

# This config.yaml was created with ddev version v1.17.5
# webimage: drud/ddev-webserver:v1.17.4
Expand Down
6 changes: 3 additions & 3 deletions .env
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
HOST=local.powermail.de
MAIL=mail.powermail.de
HOST=local.powermail-v11.de
MAIL=mail.powermail-v11.de

WEBROOT=.Build/Web
TYPO3_CACHE_DIR=var

SQLDUMPSDIR=.project/data/
SQLDUMPFILE=db.sql.gz
SQLPORT=42473
SQLPORT=39699

CHROMEPORT=19647

Expand Down
4 changes: 2 additions & 2 deletions .project/TYPO3/config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
base: 'https://local.powermail.de/'
base: 'https://local.powermail-v11.de/'
errorHandling: { }
baseVariants:
-
base: 'https://powermail.ddev.site/'
base: 'https://powermail-v11.ddev.site/'
condition: 'applicationContext == "Development/DDEV"'
languages:
-
Expand Down
8 changes: 4 additions & 4 deletions Documentation/ForContributors/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ use.

Now you will be able to work with the website

Frontend: https://powermail.ddev.site/ \
Backend: https://powermail.ddev.site/typo3
Frontend: https://powermail-<TYPO3-version>.ddev.site/ \
Backend: https://powermail-<TYPO3-version>.ddev.site/typo3


Username: admin \
Expand All @@ -40,8 +40,8 @@ Password: password
- open a console in the project root
- run `make install-project`

Frontend https://local.powermail.de/ \
Backend: https://local.powermail.de/typo3
Frontend https://local-<TYPO3-version>.powermail.de/ \
Backend: https://local-<TYPO3-version>.powermail.de/typo3

Username: admin \
Password: password
Expand Down
2 changes: 1 addition & 1 deletion Tests/Behavior/behat.ddev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default:
fail_prefix: 'failed_'
purge: true
Behat\MinkExtension:
base_url: https://powermail.ddev.site/
base_url: https://powermail-v11.ddev.site/
files_path: /var/www/html/Tests/Behavior/Assets
selenium2: ~
browser_name: 'chrome'
Expand Down
2 changes: 1 addition & 1 deletion Tests/Behavior/behat.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default:
fail_prefix: 'failed_'
purge: true
Behat\MinkExtension:
base_url: https://local.powermail.de
base_url: https://local.powermail-v11.de
files_path: /app/Tests/Behavior/Assets
selenium2: ~
browser_name: 'chrome'
Expand Down

0 comments on commit 4fc5e40

Please sign in to comment.