Skip to content

Run localy

Yel0w edited this page Jun 26, 2026 · 7 revisions

Running QuickMath Locally

Prerequisites

Before running QuickMath, make sure you have the following installed:


Step 1: Get the Source Code

Option 1 — Clone the repository (Recommended)

Open a terminal in the directory where you want to download the project, then run:

git clone https://github.com/Yel0w08/QuickMath.git

This will create a QuickMath folder containing the project.

Option 2 — Download the source code

If you don't have Git installed, you can download the repository as a ZIP archive:

https://github.com/Yel0w08/QuickMath/archive/refs/heads/main.zip

Extract the archive to a folder of your choice.


Step 2: Run the Project

Open a terminal in the project's root directory (the folder containing the .csproj file), then run:

dotnet run

This will build and launch QuickMath locally.

If you've used JavaScript before, you can think of dotnet run as the .NET equivalent of npm run dev.


Troubleshooting

.NET SDK not found

Make sure the .NET SDK is installed correctly by running:

dotnet --version

If the command is not recognized, install the latest .NET SDK from:

https://dotnet.microsoft.com/download

Command executed in the wrong folder

Ensure you're running dotnet run from the project's root directory (the directory containing the .csproj file).