I wanted to make a fake bank like the one seen in KitBoga's streams. I was interested in learning how to make websites with C# so I chose to learn Blazor while making this. Because I made this while learning, some of the stuff could probably be more efficient.
Styling based off https://github.com/jakejarvis/kitboga-bank
- Download the .NET SDK from (here)[https://dotnet.microsoft.com/download/dotnet/thank-you/sdk-5.0.103-windows-x64-installer]
- Clone this repository (
git clone https://github.com/Sampleeeee/fake-bank
) - Enter the folder of the repository and type
dotnet run
. (If you know what you're doing and want to make changes live, typedotnet watch run
) - Configuration can be found in Data/BrainService.cs.
- Open Notepad (or any other text editor) as administrator.
- Open file
C:\Windows\System32\drivers\etc\hosts
- You may need to set the file extension to .* (All Files)
- On a new line add
127.0.0.1 yourwebsite.com
- Some TLDs such as
.bank
require a secure connection, for this you need to setup an ssl. - You will also need to change
profiles.Bank.applicationUrl
from"http://localhost:80"
to"https://localhost:443"
- Some TLDs such as
- Save the file
Better configuration coming soon
Themes coming soon