The .gitignore file is used to specify files and directories that are not meant to be committed to version control.
/vendor
/node_modules
/builds
/.idea
/.vscode
/.vagrant
/.cache
.phpunit.result.cache

.env // Never commit your .env file to Git!

# /_site // HydePHP recommends that that you keep the output directory outside of version control,
        so we added this placeholder for you in case you want to use it in the future.