-
Notifications
You must be signed in to change notification settings - Fork 10
Update
kellerkinder-service edited this page Apr 9, 2024
·
7 revisions
- You have to adjust your
devenv.yaml
to... kellerkinder: url: github:kellerkinderDE/devenv-shopware?ref=v2.2.0 flake: false ...
- If you want to run multiple projects at the same time, you may have to consider adding
process.implementation = "honcho";
to yourdevenv.nix
as the default process manager in devenv has changed.
- We support now the newest version of shopware-cli, which be installed directly. To do this, you just need to adjust the following in your
devenv.yaml
... kellerkinder: url: github:kellerkinderDE/devenv-shopware?ref=v2.1.0 flake: false ... froshpkgs: url: github:FriendsOfShopware/nur-packages inputs: nixpkgs: follows: "nixpkgs" ...
- The following configuration types have been changed from
string
toìnt
:kellerkinder.httpPort
andkellerkinder.httpsPort
- This is also the case for every other port configuration
- For stability reasons, we use the stable branch
nixos-23.11
instead ofnixos-unstable
in our examples.
- We changed the default ports for
http
to80
andhttps
to443
- If you still want to use custom ports, take a look at the options.
- You have to adjust your
devenv.yaml
to... kellerkinder: url: github:kellerkinderDE/devenv-shopware?ref=v2.0.0 flake: false ...
- You have to update to devenv version
0.6.3
or higher - You have to remove
http
,https
and the ports (e.g.8000
) fromkellerkinder.additionalServerAlias
- You have to adjust your
devenv.yaml
to... kellerkinder: url: github:kellerkinderDE/devenv-shopware?ref=v1.0.0 flake: false ...
- If your shopware version is below
6.5.x
you might want to addlanguages.javascript.package = pkgs.nodejs-16_x;
to yourdevenv.nix
due to compatibility.