https://github.com/in2code-de/typo3-tiptap
Repository of the tiptap initiative
https://github.com/in2code-de/typo3-tiptap
Last synced: 10 months ago
JSON representation
Repository of the tiptap initiative
- Host: GitHub
- URL: https://github.com/in2code-de/typo3-tiptap
- Owner: in2code-de
- Created: 2025-07-04T09:52:38.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-18T10:30:17.000Z (11 months ago)
- Last Synced: 2025-07-29T12:28:35.597Z (10 months ago)
- Language: PHP
- Size: 173 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tip Tap
## Requirements
* having Docker installed locally (see https://docs.docker.com/get-docker/)
* having DDEV installed locally (see https://ddev.readthedocs.io/en/stable/#installation)
## Initialization
```sh
ddev start
ddev composer install
ddev pull assets
```
## Credentials
- Backend: https://in2tiptap.ddev.site/typo3
- Username: `admin`
- Password: `John3:16`
### Downloading database and files
```sh
# HEADS UP: All files in the local `public/fileadmin/` will be overridden, that means:
# all files that are not present in `data/files/public/fileadmin/` will be deleted from fileadmin
ddev pull assets
```
### Update local database and files
```sh
# HEADS UP: All files in the local `data/files/public/fileadmin/` will be overridden, that means:
# all files that are not present in `public/fileadmin/` will be deleted from fileadmin
ddev push assets
```