Welcome to the Evergreen Apps repo! This is repo hosts application functions and manifests for the Evergreen module.
This repository hosts:
- Application Functions: The logic that powers Evergreen's supported application features.
- Manifests: Configuration files that describe how apps detection works.
Check out Evergreen Documentation for detailed guides.
If you want to contribute to this project with fixes or new applications, set up your local environment as follows:
- Install the Evergreen module, or clone the evergreen-module repository.
- Clone this repository.
- Configure the Evergreen environment for local development by creating the
EVERGREEN_APPS_PATHenvironment variable, pointing to the location of the local repository: Set a custom cache location. For example:
$env:EVERGREEN_APPS_PATH="C:\projects\evergreen-apps"or
$env:EVERGREEN_APPS_PATH="/Users/aaron/projects/_EUCPilots/evergreen-apps"- Import the Evergreen module, for example:
Import-Module -Name Evergreen -Forceor
Import-Module -Name "/Users/aaron/projects/_EUCPilots/evergreen-module/Evergreen" -Force- Implement your changes in a new branch and create a pull request.