https://github.com/eucpilots/evergreen-apps
Apps repository for a future version of Evergreen that will download supported apps from GitHub
https://github.com/eucpilots/evergreen-apps
applications automation configmgr evergreen intune packer
Last synced: 4 days ago
JSON representation
Apps repository for a future version of Evergreen that will download supported apps from GitHub
- Host: GitHub
- URL: https://github.com/eucpilots/evergreen-apps
- Owner: EUCPilots
- Created: 2023-07-24T12:28:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2026-07-15T10:44:17.000Z (9 days ago)
- Last Synced: 2026-07-15T12:29:24.559Z (9 days ago)
- Topics: applications, automation, configmgr, evergreen, intune, packer
- Language: PowerShell
- Homepage: https://eucpilots.com/evergreen-docs/
- Size: 731 KB
- Stars: 10
- Watchers: 1
- Forks: 5
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🌲 Evergreen Apps Repository
Welcome to the **Evergreen Apps** repo! This is repo hosts application functions and manifests for the Evergreen module.
## 🚀 What is This Repo?
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](https://eucpilots.com/evergreen) for detailed guides.
## ℹ How to Use
If you want to contribute to this project with fixes or new applications, set up your local environment as follows:
1. Install the [Evergreen](https://www.powershellgallery.com/packages/Evergreen/) module, or clone the [evergreen-module](https://github.com/EUCPilots/evergreen-module) repository.
2. Clone this repository.
3. Configure the Evergreen environment for local development by creating the `EVERGREEN_APPS_PATH` environment variable, pointing to the location of the local repository: [Set a custom cache location](https://eucpilots.com/evergreen/updateapps#set-a-custom-cache-location). For example:
```powershell
$env:EVERGREEN_APPS_PATH="C:\projects\evergreen-apps"
```
or
```powershell
$env:EVERGREEN_APPS_PATH="/Users/aaron/projects/_EUCPilots/evergreen-apps"
```
4. Import the Evergreen module, for example:
```powershell
Import-Module -Name Evergreen -Force
```
or
```powershell
Import-Module -Name "/Users/aaron/projects/_EUCPilots/evergreen-module/Evergreen" -Force
```
5. Implement your changes in a new branch and create a pull request.