Weapsy is an ASP.NET Core CMS based on DDD and CQRS.
For each writing operation, there is a command and a command handler. After the operation is completed successfully, one or more events are published by an internal event publisher. It's extremely easy to subscribe to those events.
Same way, for each reading operation there is a query and a query handler.
Weapsy will be extendable with custom apps. An app can display content through modules added to dynamic pages or through static pages of the app itself. The first one included is the Text app used to add html modules to dynamic pages.
For any queries please visit my LinkedIn profile where you can find all my contact details: https://www.linkedin.com/in/lucabriguglia/
Coming Soon
https://github.com/weapsy/Weapsy/wiki/Roadmap
https://github.com/weapsy/Weapsy/wiki
- C#
- ASP.NET Core
- JavaScript, jQuery
- Entity Framework Core
- MSSQL, MySQL, SQLite, PostgreSQL
- DDD
- CQRS
- Visual Studio 2015 Update 3
- .NET Core 1.1 for Visual Studio (https://www.microsoft.com/net/download/core)
- Open the Weapsy.sln solution in Visual Studio
- Build the solution (default apps will be copied to the "Apps" folder)
- Choose the data provider of your choice in the appsettings file and modify the default connection string accordingly if needed.
- Run (F5 or Ctrl+F5)
- Login using these credentials:
- email: admin@default.com
- password: Ab1234567!
- Database and seed data will be created automatically the first time you run the application.
Please create issues to report bugs, suggest new functionalities, ask questions or just share your thoughts about the project. I will really appreciate your contribution, thanks.