Skip to content

Prodject/GoldenEye-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoldenEye Logo

GoldenEye

Join the chat at https://gitter.im/oskardudycz/GoldenEye Stories in Ready Build status

What is GoldenEye?

GoldenEye is a Full Stack framework written in .NET Core. The main goal of GoldenEye is to speed up your development process. It gathers most widely used frameworks in .NET world and pack them into a simple bootstrap Nuget packages. It also provide set of base classes, helpers, extensions that will help you with your daily work.

What do I get?

Complete Solution bootstrap - bottom up:

  • Entity Framework (supports also Dapper, Marten)
  • CRUD Repositories and CRUD Application Services
  • WebApi REST controllers
  • Authorization with OAuth (Identity Server)
  • complete set up of dependency injection with automatic naming convention binding
  • AutoMapper preconfigured and automatic mappings registration
  • Validation flow with FluentValidation.NET
  • Examples of complete usage (Task list functionality)
  • CQRS and Domain Driven Development stack - sending and handling commands, queries, events (with usage of MediatR library)
  • document database and event store support in Postgres with Marten framework
  • many more

How do I get started?

Install the project template by running

dotnet new -i GoldenEye.WebApi.Template.SimpleDDD

and then create new project based on it:

dotnet new SimpleDDD -n NameOfYourProject

Or manually add packages to your project, eg:

  • Shared - GoldenEye.Shared.Core

    dotnet add package GoldenEye.Shared.Core

  • Backend - GoldenEye.Backend.Core

    dotnet add package GoldenEye.Backend.Core

  • Entity Framework - GoldenEye.Backend.Core.EntityFramework

    dotnet add package GoldenEye.Backend.Core.EntityFramework

  • WebApi - GoldenEye.Backend.Core.WebApi

    dotnet add package GoldenEye.Backend.WebApi

Where can I get it?

Install packages from the Nuget package manager:

Core packages:

Domain Driven Design package:

Document database and Event Store with Marten package:

  • GoldenEye.Backend.Core.Marten - extension to GoldenEye.Backend.Core and GoldenEye.Backend.DDD that gives possibility to use Postgres as Document Database and Event Store - thanks to Marten library

Security related packages (User management, OAuth etc.)

I found an issue or I have a change request

Feel free to create an issue on GitHub. Contributions, pull requests are more than welcome!

GoldenEye is Copyright © 2015-2018 Oskar Dudycz and other contributors under the MIT license.

About

Full Stack framework (Entity Framework + WebAPI) that will speed up your development process

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 98.5%
  • CSS 1.3%
  • Other 0.2%