PlatformPlatform

(β˜… 436)

A platform designed for building enterprise-grade, multi-tenant products using Azure, .NET, React, TypeScript, Infrastructure as Code, etc.

  • .gitattributes
  • .gitignore
  • .mcp.json
  • AGENTS.md
  • LICENSE
  • README.md

# Installation Guide

1. Get the code
git clone https://github.com/platformplatform/PlatformPlatform

Downloads the entire project code from GitHub to your computer.

cd PlatformPlatform

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Node.js Node.js must be installed to use npm.
  • Homebrew A package manager for macOS/Linux.
irm https://aspire.dev/install.ps1 | iex

Downloads and runs the official install script via PowerShell β€” this handles the full setup automatically.

npm install -g typescript-language-server typescript

Installs the package published on the npm registry globally β€” no need to clone the source.

brew install --cask dotnet-sdk

Installs the pre-built package via Homebrew β€” no source build required.

brew install --cask docker

Installs the pre-built package via Homebrew β€” no source build required.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Docker

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
winget install Docker.DockerDesktop

Type this command into your terminal and run it.

brew install --cask docker

Installs the pre-built package via Homebrew β€” no source build required.

sudo apt-get update && sudo apt-get install -y dotnet-sdk-10.0 docker.io docker-compose-v2

Runs the command against the services defined in the compose file.

sudo systemctl enable --now docker

Type this command into your terminal and run it.

sudo usermod -aG docker $USER

Type this command into your terminal and run it.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

4. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
winget install Microsoft.DotNet.SDK.10

Type this command into your terminal and run it.

dotnet tool install -g csharp-ls

Type this command into your terminal and run it.

brew install --cask dotnet-sdk

Installs the pre-built package via Homebrew β€” no source build required.

sudo apt-get update && sudo apt-get install -y dotnet-sdk-10.0 docker.io docker-compose-v2

Runs the command against the services defined in the compose file.

dotnet dev-certs https --trust

Type this command into your terminal and run it.

βœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

5. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
npm install -g typescript-language-server typescript

Installs the package published on the npm registry globally β€” no need to clone the source.

βœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

// repository documentation