Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelschnurr authored Jan 10, 2024
1 parent ec97d87 commit e3a6225
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,31 @@
This repository provides a platform for managing classified ads. The prototype implementation is used for the evaluation of Blazor WebAssembly and as a showcase

## Before you start
Comming soon
- Install the <a href="https://dotnet.microsoft.com/download/dotnet/7.0">.NET 7 SDK</a>
- Install the <a href="https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/install">.NET Web Development Tools and WebAssembly Build Tools</a>
- Notice that the frontend application is hosted at `https://localhost:7115/`
- Notice that the backend application is hosted at `https://localhost:7292/`

## Build and run
Comming soon


### Using an IDE

If you're using an integrated development environment like Visual Studio, you can easily open the project in it.
After a `package restore` and `build` you can start the projects. To see and send data make sure the frontend can talk to the backend by starting both projects: `Io.Schnurr.Circles.App` for frontend and `Io.Schnurr.Circles.Api` for the backend.

### Using a CLI

Open the `dotnet` CLI and navigate to the folder where the `.csproj` of the project `Io.Schnurr.Circles.App` is located.

Run the following command to build and then run the project:

```
dotnet build
dotnet run --launch-profile https
```

Repeat this step for the `.csproj` in the project `Io.Schnurr.Circles.Api`

## Demonstration
Comming soon
Expand Down

0 comments on commit e3a6225

Please sign in to comment.