Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1019 Bytes

README.md

File metadata and controls

49 lines (31 loc) · 1019 Bytes

AggieRent

A .NET Core project helping Aggies find their dream home!

Quick Start

  • With authentication and authorization:

    dotnet run --project AggieRent
  • With auth disabled:

    dotnet run --project AggieRent -lp no-auth

Unit Testing

dotnet test

Contributing

Development Environment Setup

  • VS Code is the recommended IDE for working with this project.

  • You should have .NET 8.0 available in your environment. To check, run

    dotnet --version
  • Install the CSharpier .NET tool as well as the VS Code extension to conform to the coding style:

    dotnet tool restore

    To format the source code from commandline, run:

    dotnet dotnet-csharpier .

    You should also set Charpier to be the default formatter, enable Format on Save and Format on Paste in your VS Code settings.