GithubHelp home page GithubHelp logo

devnewproject's Introduction

TYPO3-Project-Template with webpack encore

This project was build, to test and demonstrate the use of Webpack Encore with TYPO3-CMS.

System requirements

  • Docker installed and running
  • DDEV installed
  • Node.js installed

How to start a new project

  1. Make a new project directory and change into it
mkdir myProject
cd myProject
  1. Clone this repository
git clone --single-branch --branch main [email protected]:Starraider/devNewProject.git .
git submodule update --init --recursive
  1. Disconnect your project from original github and git
git remote rm origin
rm -rf .git
rm .gitmodules
  1. Initialize your own git repository
git init
  1. Push your git repository to Github

Usually VS Code asks you to generate a new Github repository when you make your first git commit.

  1. Change project name from devNewProject to your own project name

Replace "devNewProject" with your own project name in these files:

  • .ddev/config.yaml
  • composer.json
  • public/typo3conf/LocalConfiguration.php
  • Build/package.json
  1. Change repository URL

Replace the repository URL "https://github.com/Starraider/devNewProject.git" with your own repository URL in these files:

  • composer.json
  • Build/package.json
  1. Install node dependencies
cd Build
yarn install
  1. Start DDEV and install dependencies
ddev start
ddev composer install
  1. Change settings in .env

Open file .env in your editor. Change SITE_BASE= to the generated URL, which is shown after ddev start. Change TYPO3__DB__Connections__Default__host= to the generated db container name, which is shown during ddev start. Restart ddev restart.

  1. Restore database and files
ddev db-restore
ddev fileadmin-restore
  1. Generate webpack files
cd Build/
yarn encore dev

If you get an error message, maybe you have to change your node.js version with nvm use system.

  1. Launch local website
ddev restart
ddev launch typo3
  1. Login

Username: Passwort:

  1. If you see the error message "zuncompress(): need dictionary ..."

This is currently a bug in DDEV. Open file public/typo3conf/AdditionalConfiguration.php in your editor. Remove the comment "#ddev-generated" on the top of the file (otherwise it will be overwriten on every start). Change 'driver' => 'pdo_mysql', into 'driver' => 'mysqli',. Restore DB again with ddev db-restore. Restart with ddev restart. Now the error message should be gone.

  1. Change local development URL

Replace the development URL "https://devnewproject.ddev.site" with the generated URL, which is shown after ddev start, in these files:

  • Build/js/app.js
  • Build/cypress.json
  1. Change deployment credentials

Change all credentials in deploy.php to your own deployment data.

  1. Setup GitHub Action for automated deployment

a. Generate ssh keys for cloning of your private repository to your server

Generate ssh keys on your server with:

ssh-keygen -t rsa -b 4096

Leave password empty! Use the public key on GitHub for "Settings -> Deployment Keys -> Add deploy key" (name doesn't matter). Make a test connection to GitHub to update the known_hosts file, with:

b. Generate ssh keys for the deployment from GitHub to your server

Generate ssh keys on your local machine:

ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_github -C "[email protected]"

Leave password empty and use the email address, which you used for your GitHub account. If you alreade have a local ssh keys without password, you can use this instead.

Upload the public key to your server with:

ssh-copy-id -f -i ~/.ssh/id_github [email protected]

Make a test connection to your server to update the known_hosts file, with:

ssh -i ~/.ssh/id_github [email protected]

Open the private key and use it on GitHub for generating "Settings -> Secrets -> Actions -> New repository secret" with Name "PRIVATE_KEY".

Get your entry from known_hosts on your local machine, with:

ssh-keyscan pxxxxxx.mittwaldserver.info

Copy the line which looks like "pxxxxxx.mittwaldserver.info ssh-rsa AAA..." and use it on GitHub for generating "Settings -> Secrets -> Actions -> New repository secret" with Name "KNOWN_HOSTS". (Without it ssh would ask if you want to add your server to the known_hosts).

How to use DDEV

ddev start
ddev composer update
ddev stop
ddev describe

Opening the website

ddev launch

or go to https://devnewproject.ddev.site

How to use Webpack Encore

Be aware: Webpack Encore needs Node.js Version 16.8! You can switch Node.js Version with:

nvm use system

compile assets once

yarn encore dev

or, recompile assets automatically when files change

yarn encore dev --watch

on deploy, create a production build

yarn encore production

Backup

ddev export-db --file=/Quellen/backup/db.sql.gz
ddev db-backup
ddev db-restore
ddev fileadmin-backup
ddev fileadmin-restore

//ddev export-db >./Quellen/backup/2021-11-27_db.sql.gz

typo3-console

Attention: The typo3-console runs only inside the container!

ddev typo3cms cache:flush
ddev typo3cms database:updateschema

TYPO3 CLI Commands

ddev typo3 --help
ddev typo3 list (lists all commands)
ddev typo3 language:update

Debug Mode

You can change the TYPO3_CONTEXT in the file .ddev/config.yaml

To see error messages in the frontend put in Setup:

- TYPO3_CONTEXT=Development

Testing & Linting

Static Linters

Run all static linters at once:

ddev composer ci:static

Prettier

Prettier will auto format all JavaScript files.

PHP CS Fixer

Right click on file and chose "Dokument formatieren" oder "php-cs-fixer: diff" oder "php-cs-fixer: fix"

PHPStan

Right click on file or folder and chose "PHPStan: Scan for Errors"

TypoScript Lint

ddev composer ci:ts:lint

Normalize composer.json

ddev composer ci:composer:normalize

Acceptance Tests

Prerequisite

You must have installed Cypress.

Run the tests

Inside the Build folder run:

yarn run cypress open

License

GPL-2.0 or later

devnewproject's People

Contributors

starraider avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.