Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.74 KB

readme.md

File metadata and controls

37 lines (25 loc) · 1.74 KB

PeachPie Templates

This repository contains various dotnet project templates to be used for creating PeachPie compiled applications.

Using templates

  1. Install peachpie templates via: dotnet new -i "Peachpie.Templates::*"
  2. Create a project based on chosen template e.g.: dotnet new console -lang PHP
  3. Restore packages for the newly created project: dotnet restore
  4. Run the project: dotnet run

You need to install PeachPie templates only once. They get stored in ~HOME/.templateengine cache.

Prerequisites

  • .NET SDK 6.0 or later
  • PowerShell (only for building)

Contributing templates & building

Adding a new template:

Building & testing

  • Invoke .\build.ps1 which calls a build (1) and a test (2) script
    • 1: Packages all templates into a nuget package (see /out/Peachpie.Templates.x.y.z.nupkg)
    • 2: Installs the the templates package to current .templateengine cache
    • 2: Tries to create a project from each one, restore it, and build it
  • After invoking the build script your template should be listed among dotnet new -all