- Download and install Visual Studio 2019 with the following components:
- .NET desktop development (Workload)
- ASP.NET and web development (Workload)
- .NET Core SDK (Individual Component)
- Install Node LTS or Current version whichever you prefer. Make sure to select the option to add it to your Path!
- Clone this repo and open the CORAbot.sln solution file found in the Website directory in Visual Studio
- Build and run the project
- You should now be able to view the site in your default browser.
- Download and install VS Code then install the following:
- .NET Core SDK. The SDK also includes the Runtime.
- The C# extension from the VS Code Marketplace.
- Install Node LTS or Current version whichever you prefer. Make sure to select the option to add it to your Path!
- Clone this repo and open the Website directory in VS Code.
- In the debug tab click on create a launch.json file then select the .Net Core option
- Start a debug session
- You should now be able to view the site in your default browser.
The Front-end of the site is set up in React. If you want to only to only contribute towards that part of the project then you can follow these steps to get started:
- Install Node LTS or Current version whichever you prefer. Make sure to select the option to add it to your Path!
- Clone this repo and open the ClientApp directory found in the Website folder in your favorite text editor.
- Open a terminal in that directory and run:
npm start
- You should now be able to view the site in your default browser.