CleanAspire is a cutting-edge, open-source template built on .NET 9, designed to accelerate the development of lightweight, fast, and simple Blazor WebAssembly or Progressive Web Applications (PWA). It seamlessly integrates Minimal APIs, Aspire, and Scalar for modern API documentation.
With a focus on Clean Architecture and extreme code simplicity, CleanAspire provides developers with the tools to create responsive and maintainable web applications with minimal effort. The template also supports Microsoft.Kiota to simplify API client generation, ensuring consistency and productivity in every project.
CleanAspire fully supports offline mode through its integrated PWA capabilities, enabling your application to function seamlessly without an internet connection. By leveraging Service Workers and browser caching, the application can store essential resources and data locally, ensuring quick load times and uninterrupted access. Additionally, CleanAspire offers streamlined configuration options to help developers manage caching strategies and data synchronization effortlessly, guaranteeing that users receive the latest updates once the network is restored.
Key Features of Offline Support:
- Service Workers Integration: Efficiently handle caching and background synchronization to manage offline functionality.
- Automatic Resource Caching: Automatically caches essential assets and API responses, ensuring critical parts of the application are accessible offline.
- Seamless Data Synchronization: Maintains data consistency by synchronizing local changes with the server once the connection is reestablished.
- User Experience Enhancements: Provides fallback UI components and notifications to inform users about their offline status and any pending actions.
By incorporating robust offline capabilities, CleanAspire empowers developers to build resilient applications that deliver a consistent and reliable user experience, regardless of network conditions.
-
Built-in Aspire Support
- Fully integrated with Aspire for efficient application hosting and configuration.
- Simplifies the setup process while providing a robust foundation for lightweight applications.
-
Fast and Minimal .NET 9 Minimal APIs
- Uses the latest .NET 9 features to create high-performance and efficient APIs.
- Includes Scalar for modern and concise OpenAPI documentation, replacing traditional Swagger tools.
-
Designed for Simplicity and Speed
- Adopts extreme code simplicity for rapid development without sacrificing functionality.
- Ideal for developers looking to build quick, responsive Blazor WebAssembly applications or PWAs.
-
Blazor WebAssembly and PWA Integration
- Combines the power of Blazor WebAssembly for interactive and lightweight client-side UIs.
- PWA capabilities ensure offline support and a seamless native-like experience, allowing users to access the application and data even when offline.
-
Streamlined API Client Integration
- Utilizes Microsoft.Kiota to automatically generate strongly-typed API clients, reducing development overhead.
- Ensures consistent and error-free client-server communication.
-
Clean Architecture
- Promotes modular, maintainable, and testable codebases through clear architectural layers.
-
Cloud-Ready with Docker
- Preconfigured for Docker, enabling easy deployment to cloud platforms or local environments.
-
Real-Time Web Push Notifications
- Integrated Webpushr to deliver instant browser notifications.
- Keeps users informed and engaged with real-time updates.
- Fully customizable notifications with targeted delivery and analytics support.
-
Integrated CI/CD Pipelines
- Includes GitHub Actions workflows for automated building, testing, and deployment.
-
Offline Mode Support
- Offline mode enabled by default to provide a seamless experience even without internet access.
- Uses IndexedDB to cache data locally, allowing the application to retrieve data and function offline.
- The system detects the online/offline status and fetches data from IndexedDB when offline, ensuring uninterrupted access to key features.
- Lightweight and Fast: Designed to create high-performance, minimal Blazor WebAssembly or PWA projects.
- Effortless Development: Extreme simplicity in code makes it easy to start quickly and scale effectively.
- Advanced API Integration: Automate client-side API generation with Microsoft.Kiota for faster results.
- Future-Ready Architecture: Leverages the latest .NET 9 capabilities and Aspire hosting for modern web applications.
version: '3.8'
services:
apiservice:
image: blazordevlab/cleanaspire-api:0.0.51
environment:
- ASPNETCORE_ENVIRONMENT=Development
- AllowedHosts=*
- ASPNETCORE_URLS=http://+:80;https://+:443
- ASPNETCORE_HTTP_PORTS=80
- ASPNETCORE_HTTPS_PORTS=443
- DatabaseSettings__DBProvider=sqlite
- DatabaseSettings__ConnectionString=Data Source=CleanAspireDb.db
- AllowedCorsOrigins=https://cleanaspire.blazorserver.com,https://localhost:7123
- SendGrid__ApiKey=<your API key>
- SendGrid__DefaultFromEmail=<your email>
- Webpushr__Token=<your-webpushr-token>
- Webpushr__ApiKey=<your-webpushr-api-keys>
- Webpushr__PublicKey=<your-webpushr-public-key>
ports:
- "8019:80"
- "8018:443"
blazorweb:
image: blazordevlab/cleanaspire-webapp:0.0.51
environment:
- ASPNETCORE_ENVIRONMENT=Production
- AllowedHosts=*
- ASPNETCORE_URLS=http://+:80;https://+:443
- ASPNETCORE_HTTP_PORTS=80
- ASPNETCORE_HTTPS_PORTS=443
ports:
- "8015:80"
- "8014:443"
-
Clone the Repo:
git clone https://github.com/neozhu/cleanaspire.git
-
Navigate to the Project Folder:
cd CleanAspire
-
Run the Application:
dotnet run
-
Access the Application: Open your browser and go to
https://localhost:5001
to see the Blazor WebAssembly PWA in action.
-
Register on Webpushr
- Visit the Webpushr website and sign up for an account.
- Complete the registration process to access your dashboard.
-
Obtain Required Keys
- Navigate to the API configuration section in your Webpushr dashboard.
- Copy the following keys:
- Token
- API Key
- Public Key
-
Add Configuration to
appsettings.json
Add the keys obtained from Webpushr into your application configuration file as follows:"Webpushr": { "Token": "your-webpushr-token", "APIKey": "your-webpushr-api-key", "PublicKey": "your-webpushr-public-key" }
-
Integrate Webpushr in the Application
- Use the
PublicKey
for initializing Webpushr on the client-side to enable browser notifications. - Use the
Token
andAPI Key
securely on the server-side for API communication with Webpushr.
- Use the
CleanAspire is structured following the Clean Architecture approach, dividing the solution into distinct layers:
CleanAspire/
β
βββ Solution Items/
β βββ .editorconfig
β
βββ src/
β βββ CleanAspire.Api/ # API Layer - .NET Minimal API
β β βββ CleanAspire.Api.csproj
β βββ CleanAspire.AppHost/ # Hosting Layer - Application hosting and configuration
β β βββ CleanAspire.AppHost.csproj
β βββ CleanAspire.Application/ # Application Layer - Business Logic
β β βββ CleanAspire.Application.csproj
β βββ CleanAspire.ClientApp/ # Client App Layer - Blazor WebAssembly or other client logic
β β βββ CleanAspire.ClientApp.csproj
β βββ CleanAspire.Domain/ # Domain Layer - Core Entities, including EF entities
β β βββ CleanAspire.Domain.csproj
β βββ CleanAspire.Infrastructure/ # Infrastructure Layer - Data Access, External Services
β β βββ CleanAspire.Infrastructure.csproj
β βββ CleanAspire.ServiceDefaults/ # Service Defaults - Predefined configurations for services
β β βββ CleanAspire.ServiceDefaults.csproj
β
βββ src/Migrators/
β βββ Migrators.MSSQL/ # SQL Server Migration Scripts
β β βββ Migrators.MSSQL.csproj
β βββ Migrators.PostgreSQL/ # PostgreSQL Migration Scripts
β β βββ Migrators.PostgreSQL.csproj
β βββ Migrators.SQLite/ # SQLite Migration Scripts
β β βββ Migrators.SQLite.csproj
β
βββ tests/
β βββ CleanAspire.Tests/ # Unit and Integration Tests
β β βββ CleanAspire.Tests.csproj
β
βββ README.md # Project README
βββ LICENSE # License Information
βββ CleanAspire.sln # Solution File
Contributions are welcome! If you want to add features, report bugs, or just suggest improvements, please feel free to submit issues or pull requests.
This project is licensed under the MIT License.
- Star the Repository: If you like CleanAspire, please give it a star! π
- Follow the Project: Stay updated with the latest developments by watching the repository.
- Join Discussions: Share your thoughts and ideas to make CleanAspire even better.
Feel free to reach out if you have questions or feedback. Let's build something amazing together with CleanAspire!