DigitalWallet
The E-Commerce User Wallet Service designed in ASP.NET Core
File Explorer
Download Latest Version (.zip)- IServiceCollectionExtensions.cs
- ValidatorExtensions.cs
- EndpointValidatorFilter.cs
- 20240517083730_InitDbContext.cs
- 20240517083730_InitDbContext.Designer.cs
- 20240517223314_RenameDateFieldToAddUtcSuffix.cs
- 20240517223314_RenameDateFieldToAddUtcSuffix.Designer.cs
- WalletDbContextModelSnapshot.cs
- WalletDbContext.cs
- WalletDbContext.Schema.cs
- WalletDbContextReadOnly.cs
- Currency.cs
- CurrencyConverter.cs
- CurrencyEfConfiguration.cs
- CurrencyId.cs
- CurrencyNotFoundException.cs
- CurrencyService.cs
- DuplicateCurrencyException.cs
- InvalidCurrencyException.cs
- InvalidCurrencyRatioException.cs
- CreateCurrencyRequest.cs
- CreateCurrencyRequestValidator.cs
- CreateCurrencyResponse.cs
- Endpoint.cs
- Endpoint.cs
- GetCurrencyResponse.cs
- Endpoint.cs
- UpdateRatioRequest.cs
- UpdateRatioRequestValidator.cs
- FeatureManager.cs
- InvalidTransactionAmountException.cs
- Transaction.cs
- TransactionEfConfiguration.cs
- TransactionId.cs
- TransactionKind.cs
- TransactionService.cs
- TransactionType.cs
- WalletOwnershipException.cs
- DecreaseWalletBalanceRequest.cs
- DecreaseWalletBalanceRequestValidator.cs
- Endpoint.cs
- Endpoint.cs
- IncreaseWalletBalanceRequest.cs
- IncreaseWalletBalanceRequestValidator.cs
- Endpoint.cs
- WalletFundsRequest.cs
- WalletFundsRequestValidator.cs
- Endpoint.cs
- WalletTransactionsRequest.cs
- FeatureManager.cs
- Endpoint.cs
- ChangeTitleRequest.cs
- ChangeTitleRequestValidator.cs
- Endpoint.cs
- InsufficientBalanceException.cs
- UserId.cs
- Wallet.cs
- WalletAlreadyExistsException.cs
- WalletEfConfiguration.cs
- WalletId.cs
- WalletNotFoundException.cs
- WalletService.cs
- WalletStatus.cs
- WalletUnavailableException.cs
- CreateWalletRequest.cs
- CreateWalletRequestValidator.cs
- CreateWalletResponse.cs
- Endpoint.cs
- Endpoint.cs
- Endpoint.cs
- Endpoint.cs
- FeatureManager.cs
- launchSettings.json
- appsettings.Development.json
- appsettings.json
- DigitalWallet.csproj
- DigitalWallet.http
- Dockerfile
- GlobalUsings.cs
- IAssemblyMarker.cs
- Program.cs
- DigitalWallet.FunctionalTests.csproj
- UnitTest1.cs
- DigitalWallet.IntegrationTests.csproj
- GetAllCurrencies.cs
- UnitTest1.cs
- DigitalWallet.UnitTests.csproj
- UnitTest1.cs
- .dockerignore
- .gitignore
- LICENSE
- README.md
- Thisisnabi.DigitalWallet.sln
# Installation Guide
1. Get the code
git clone https://github.com/thisisnabi/DigitalWallet
Downloads the entire project code from GitHub to your computer.
cd DigitalWallet
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
โ ๏ธ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker build -f src/DigitalWallet/Dockerfile -t digitalwallet .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 digitalwallet
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. .NET
MediumPrerequisites
dotnet restore
Downloads the packages the project depends on.
dotnet run
Builds the project and runs it immediately.
After dotnet run, check the message or address shown in the terminal.
// repository documentation
Was this content helpful?
(0 ratings)
