https://github.com/slub/ddev-kartenforum
DDEV Development System for the SLUB Kartenforum
https://github.com/slub/ddev-kartenforum
Last synced: over 1 year ago
JSON representation
DDEV Development System for the SLUB Kartenforum
- Host: GitHub
- URL: https://github.com/slub/ddev-kartenforum
- Owner: slub
- License: gpl-3.0
- Created: 2021-09-13T07:32:45.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-09-28T15:39:37.000Z (almost 3 years ago)
- Last Synced: 2025-03-25T18:41:06.344Z (over 1 year ago)
- Language: PHP
- Size: 2.37 MB
- Stars: 1
- Watchers: 10
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddev-kartenforum
DDEV Development System for the SLUB Kartenforum
## Setup
1. Checkout the repository
2. Run the script ./start-basic.sh
### Setup for usage with a local version of the typo3 extension
In the following chapter `${}` indicate placeholders, which have to be filled by the user.
1. Make sure the .ddev directory exists. If it exists go directly to 2, else follow the next steps.
- a. run `./start-basic.sh` to start the ddev containers once
- b. run `ddev stop` to shut the containers down again
2. Create the file `.ddev/docker-compose.override.yaml` and add following lines:
```
version: '3.6'
services:
web:
volumes:
- ${path to the extension on the host machine}:${target path in container}
```
3. Modify the `composer.json` in order to load the local repository
```
"repositories": {
"slub-web-kartenforum": {
"type": "path",
"url": "${path in container (from the docker-compose.override.yaml)}",
"options": {
"symlink": true
}
},
},
"require": {
"slub/slub_web_kartenforum": "dev-main"
}
```
4. Run `ddev composer update` in order for the changes to be applied
## TYPO3-Backend
Login: https://ddev-kartenforum.ddev.site/typo3/
Username: admin
Password: adminslub