Skip to content

Instantly share code, notes, and snippets.

@ebicoglu
Last active September 13, 2020 21:55
Show Gist options
  • Save ebicoglu/742ac75087bc0dd4b2abce96fb343aba to your computer and use it in GitHub Desktop.
Save ebicoglu/742ac75087bc0dd4b2abce96fb343aba to your computer and use it in GitHub Desktop.
Manual test checklist

ABP Manual Checklist

Create the template assigned to you. Visit all the pages, check the functionalities. Warning: For production testing, don't use preview parameter. Create issues for your feedbacks in the relevant repos (abp or volo).

To update your CLI tools, run the following commands:

dotnet tool update -g Volo.Abp.Cli
abp suite update

Open Source templates: app

  • MVC & Tiered & EF Core / @yekalkan

    abp new Mvc.TierEfCore -t app -u mvc --mobile none --database-provider ef --separate-identity-server
    
  • MVC & Non-Tiered & MongoDB / @cotur

    abp new Mvc.NonTierMongoDb -t app -u mvc --mobile none --database-provider mongodb
    
  • Angular & Seperated Identity Server & MongoDB / @yekalkan

    abp new Angular.SeperatedMongoDb -t app -u angular --mobile none --separate-identity-server --database-provider mongodb
    
  • Angular & Non-Seperated Identity Server & EF Core / @maliming

    abp new Angular.NonSeperatedEfCore -t app -u angular --mobile none  --database-provider ef
    

Commercial templates: app-pro

  • MVC & Tiered & EF Core / @ebicoglu

    abp new Mvc.TierEfCore -t app-pro -u mvc --mobile none --database-provider ef --separate-identity-server
    
  • MVC & Non-Tiered & MongoDB / @ismcagdas

    abp new Mvc.NonTierMongoDb -t app-pro -u mvc --mobile none --database-provider mongodb
    
  • Angular & Seperated Identity Server & MongoDB / @ebicoglu

    abp new Angular.SeperatedMongoDb -t app-pro -u angular --mobile none --separate-identity-server --database-provider mongodb
    
  • Angular & Non-Seperated Identity Server & EF Core / @maliming

    abp new Angular.NonSeperatedEfCore -t app-pro -u angular --mobile none  --database-provider ef
    

Module templates: module & module-pro

  • module / @cotur

    abp new Acme.MyProModule -t module
    
  • module-pro / @ebicoglu

    abp new Acme.MyProModule -t module-pro
    

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment