Git Product home page Git Product logo

simplcommerce's Introduction

A super simple, cross platform, modularized ecommerce system built on .NET Core

Join the chat at https://gitter.im/simplcommerce/SimplCommerce

Online demo (Azure Website)

http://demo.simplcommerce.com

Build Status

Build server Platform Status
AppVeyor Windows Build status
Travis Linux / MacOS Build Status

Prerequisite:

Technologies and frameworks used:

  • ASP.NET MVC Core 1.1.0 on .NET Core 1.1.0
  • Entity Framework Core 1.1.0
  • ASP.NET Identity Core 1.1.0
  • Autofac 4.0.0
  • Angular 1.5
  • MediatR for domain event

The architecture highlight

The application is divided into modules. Each module contains all the stuff for itself to run including Controllers, Services, Views and event static files. If a module is no longer need, you can simply just delete it by a single click.

The SimplCommerce.WebHost is the ASP.NET Core project and act as the host. It will bootstrap the app and load all the modules it found in it's Modules folder. In the gulpfile.js, there is a "copy-modules" that is bound to 'AfterBuild' event of Visual Studio to copy /bin, /Views, /wwwroot in each module to the Modules folder in the WebHost.

During the application startup, the host will scan for all the *.dll in the Modules folder and load it up using AssemblyLoadContext. These assemblies then be registered to MVC Core by ApplicationPart

A ModuleViewLocationExpander is implemented to help the ViewEngine can find the right location for views in modules.

Static files (wwwroot) in each module is served by configuring the static files middleware as follows

    // Serving static file for modules
    foreach (var module in modules)
    {
        var wwwrootDir = new DirectoryInfo(Path.Combine(module.Path, "wwwroot"));
        if (!wwwrootDir.Exists)
        {
            continue;
        }

        app.UseStaticFiles(new StaticFileOptions()
        {
            FileProvider = new PhysicalFileProvider(wwwrootDir.FullName),
            RequestPath = new PathString("/" + module.ShortName)
        });
    }

For entity framework

Every domain entities need to inherit from Entity, then on the "OnModelCreating" method, we find them and register them to DbContext

    private static void RegisterEntities(ModelBuilder modelBuilder, IEnumerable<Type> typeToRegisters)
    {
        var entityTypes = typeToRegisters.Where(x => x.GetTypeInfo().IsSubclassOf(typeof(Entity)) && !x.GetTypeInfo().IsAbstract);
        foreach (var type in entityTypes)
        {
            modelBuilder.Entity(type);
        }
    }

By default domain entities is mapped by convention. In case you need to some special mapping for your model. You can create a class that implement the ICustomModelBuilder for example

    public class CatalogCustomModelBuilder : ICustomModelBuilder
    {
        public void Build(ModelBuilder modelBuilder)
        {
            modelBuilder.Entity<ProductLink>()
                .HasOne(x => x.Product)
                .WithMany(p => p.ProductLinks)
                .HasForeignKey(x => x.ProductId)
                .OnDelete(DeleteBehavior.Restrict);
        }
    }

How to run on local

###Using Visual Studio 2015 Update 3

  • Install .NET Core SDK for Visual Studio (https://www.microsoft.com/net/core#windows)
  • Create a database in SQL Server
  • Update the connection string in appsettings.json in SimplCommerce.WebHost
  • Build whole solution. Sometimes you need to build twice to make sure all the build output of modules are copied to the WebHost
  • Open Package Manager Console Window and type "Update-Database" then press Enter. This action will create database schema
  • Run src/Database/StaticData.sql to create seeding data
  • Press Control + F5
  • The back-office can access via /Admin using the pre-created account: [email protected], 1qazZAQ!

###Using Command Line (Windows, Mac, Linux)

  • Install NodeJS

  • Install .NET SDK (https://www.microsoft.com/net/core)

  • Create a database in SQL Server or PostgreSQL

  • If you use PostgreSQL

    • Open file project.json and add package "Npgsql.EntityFrameworkCore.PostgreSQL": "1.0.0"
    • Open Console Window, change directory to \src\SimplCommerce.WebHost type "dotnet restore" then press Enter
    • Open the file Extension\ServiceCollectionExtensions.cs replace the SqlServer provider by PostgreSQL
            - services.AddDbContext<SimplDbContext>(options =>
                options.UseNpgsql(configuration.GetConnectionString("DefaultConnection"),
                b => b.MigrationsAssembly("SimplCommerce.WebHost")));
    
    • Delete all file in SimplCommerce.WebHost/Migrations
  • Open \src\SimplCommerce.WebHost\appsettings.json and change the connection string to database that you just created. For example "DefaultConnection": "User ID=thien;Password=12345;Host=localhost;Port=5432;Database=SimplCommerce;Pooling=true;"

  • In the Console Windows, type "cd .. && dotnet restore" then press Enter to change directory to /src

  • Type "dotnet build **/**/project.json" then press Enter

  • Type "cd SimplCommerce.WebHost" then press Enter

  • Type "npm install" then press Enter

  • Type "gulp copy-modules" then press Enter

  • If you use Postgres: type "donet ef migrations add initialSchema" and hit Enter

  • Type "dotnet ef database update" then press Enter. This action will create database schema

  • Run src/Database/StaticData.sql on your database to create seeding data

  • Type "dotnet watch run" then press Enter.

  • Open browser, type http://localhost:5000 then hit Enter

  • The back-office can access via /Admin using the pre-created account: [email protected], 1qazZAQ!

Roadmap

https://github.com/simplcommerce/SimplCommerce/wiki/Roadmap

How to contribute:

  • Report bugs or suggest features by create new issues or add comments to issues
  • Pickup an issue, create your own branch and implement it, then submit a Merge Request when you finished the implemntation and testing
  • Remember to fix all the StyleCop violations before submit a Merge Request

License

SimplCommerce is licensed under the Apache 2.0 license.

simplcommerce's People

Contributors

thiennn avatar maherjendoubi avatar thangln1003 avatar sau-lanvy avatar edumartins7 avatar gitter-badger avatar vladga avatar

Watchers

James Cloos avatar Fernando Nogueira avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.