You can use this template by running the following command:
docker run --rm -it \
--volume $PWD:/app \
--user $(id -u):$(id -g) \
composer create-project citadaskola-2023/project-template <project_name>
- Dependencies already are installed with
composer create-project
- Start Project container (using dunglas/frankenphp PHP image)
docker run -v $PWD:/app \ -p 80:80 -p 443:443 \ dunglas/frankenphp
- Build JS bundles (at the moment yarn has to be installed on host)
cd js; yarn; yarn run build
- Go to https://localhost, and enjoy!
- In order to use MySQL, libraries more has to be added - ref
- Bundles are baked into the image
Unlicense