## How to use ### 🍎 Linux / macOS Run the following command in your terminal. Replace `MyProjectName` with your desired solution name. ```bash # Syntax: curl [url] | bash -s -- [ProjectName] curl -fsSL https://opengist.rmrf.online/weehong/0d8ec71d1187434aa9323fdc709e8436/raw/HEAD/scaffold_project.sh | bash -s -- MyCleanApp bash -c "$(curl -fsSL https://opengist.rmrf.online/weehong/0d8ec71d1187434aa9323fdc709e8436/raw/HEAD/scaffold.sh)" ``` ### 🪟 Windows (PowerShell) Run this command to scaffold the solution. ```powershell # Syntax: irm [url] | % { & ([scriptblock]::Create($_)) [ProjectName] } irm "https://opengist.rmrf.online/weehong/0d8ec71d1187434aa9323fdc709e8436/raw/HEAD/scaffold_project.ps1" | % { & ([scriptblock]::Create($_)) Tidverse } ```