https://github.com/peter-neumann-dev/typo3-functional-colors
A TYPO3 demo package to showcase the functional colors system
https://github.com/peter-neumann-dev/typo3-functional-colors
Last synced: 3 months ago
JSON representation
A TYPO3 demo package to showcase the functional colors system
- Host: GitHub
- URL: https://github.com/peter-neumann-dev/typo3-functional-colors
- Owner: peter-neumann-dev
- License: gpl-2.0
- Created: 2024-05-06T16:40:00.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T21:01:22.000Z (about 2 years ago)
- Last Synced: 2025-05-20T16:15:16.008Z (about 1 year ago)
- Language: SCSS
- Homepage:
- Size: 1.45 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TYPO3 Functional Colors Demo Package
[](https://get.typo3.org/version/12)
[](https://www.php.net/releases/8.3/en.php)
[](https://www.mysql.com/)
[](https://ddev.com/)
[](https://getcomposer.org/)
[](https://nodejs.org/)
[](https://www.npmjs.com/)
[](https://rollupjs.org/)
[](https://prettier.io/)
[](https://eslint.org/)
[](https://stylelint.io/)
[](https://gitmoji.dev/)

**Read me before launching any rockets! 🚀**
## 🌐 Environments
### Development
- Domain: [typo3-functional-colors.ddev.site](https://typo3-functional-colors.ddev.site/)
- TYPO3-Context: `Development`
## 🔧 Setup project
### Start the DDEV project
```bash
ddev start
```
### Create a local backend user with
```bash
ddev typo3 backend:createadmin
```
### Import database and files
```bash
ddev exec rsync -avzhP assets/initialisation/fileadmin/ public/fileadmin/
```
```bash
ddev import-db --no-drop --file=assets/initialisation/database.sql.gz
```
### Build frontend assets
```bash
ddev npm run build
```
## 🗑️ Delete DDEV project
This will delete a project's database, DDEV's record of the project's
existence, all locally installed packages, generated and temporary files.
_**Will never touch your code or git included files.**_
```bash
ddev exec rm -rf var vendor node_modules public/typo3 public/typo3conf public/_assets public/index.php public/typo3temp
```
```bash
ddev delete -O
```