AI Assistant

Build Changes

Files in src/ are watched and applied instantly via live reload. Configuration and build files are not: depending on how they are wired into Docker, changing them requires either restarting the containers or rebuilding the images.

Restart Containers

These files are mounted or read at container startup. Stop the running process with CTRL/CMD+C and start again:

FileDescription
config/Nginx & PHP configurations
.envEnvironment variables
docker-compose.ymlDocker Compose configuration
npm run start

Rebuild Images

These files are baked into the Docker images at build time, so a restart alone is not enough:

FileDescription
gulpfile.jsGulp configuration
package.jsonNode.js packages
.stylelintrcStylelint configuration
.dockerignoreDocker ignore file
Dockerfile-nodejsNode.js Dockerfile
Dockerfile-wordpressWordPress Dockerfile

Stop the running process with CTRL/CMD+C, rebuild, then start again:

npm run build
npm run start