Changes between Version 1 and Version 2 of BuildInstructions


Ignore:
Timestamp:
09/11/26 07:49:05 (8 hours ago)
Author:
232012
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildInstructions

    v1 v2  
    11= Build Instructions
    22
    3 This page will contain the build instructions as well as the technology stack used.
     3Firstly, the project needs to be cloned locally from !GitHub. This can be done using the command {{{git clone https://github.com/mmilevski/kernelrecords}}}.
     4
     5Then, a connection to the database needs to be established using the command {{{ssh -N -L 5433:localhost:5432 t_kernelrecords@194.149.135.130}}} and inserting the correct password.
     6
     7Running the application is achieved by using the commands {{{dotnet build}}} and {{{dotnet run}}}. Then, it can be accessed through a web browser of choice at http://localhost:5046/
     8
     9== Technology Stack
     10
     11* **Backend:** ASP.NET Core 8.0 MVC with C#
     12* **Frontend:** Razor Views with CSS and JavaScript
     13* **ORM:** Entity Framework Core 8.0
     14* **Database Connectivity:** Npgsql 8.0
     15
     16
     17