## 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/7548f80484b4419b9ba93ca45e784638/raw/HEAD/scaffold.sh | bash -s -- MyCleanApp bash -c "$(curl -fsSL https://opengist.rmrf.online/weehong/7548f80484b4419b9ba93ca45e784638/raw/HEAD/scaffold_project.sh)" ``` ### 🪟 Windows (PowerShell) Run this command to scaffold the solution. ```powershell # Syntax: irm [url] | % { & ([scriptblock]::Create($_)) [ProjectName] } irm "https://opengist.rmrf.online/weehong/7548f80484b4419b9ba93ca45e784638/raw/HEAD/scaffold.ps1" | % { & ([scriptblock]::Create($_)) Tidverse } ```