项目作者: peacecwz

项目描述 :
Angular Form Builder with ASP.NET Core Web API
高级语言: C#
项目地址: git://github.com/peacecwz/angular-form-builder.git
创建时间: 2018-03-02T12:13:13Z
项目社区:https://github.com/peacecwz/angular-form-builder

开源协议:MIT License

下载


Angular Form Builder

Create your form dynamically and share your form to people

Deploy to Azure

Getting Started

First of all, you need to clone the project to your local machine

  1. git clone https://github.com/peacecwz/angular-form-builder.git
  2. cd angular-form-builder

Building

A step by step series of building that project

  1. Restore the project :hammer:
  1. dotnet restore
  1. Change connection string of Database (Project: FormBuilder.API, File: appsettings.Development.json, Line: 3)

  2. (Optinal) If you want to use change Database Provider to MS SQL, MySQL etc… You can change on FormBuilder.Repository/Extensions/DIExtensions.cs File (Line: 28)

  1. //For Microsoft SQL Server
  2. services.AddDbContext<FormBuilderDbContext>(options =>
  3. {
  4. options.UseSqlServer(connectionString,
  5. builder => builder.MigrationsAssembly("FormBuilder.API"));
  6. });

3.1 Delete Migrations Folder

3.2 Create New Migrations for SQL Server or another DB Providers

  1. dotnet ef migrations add InitDb
  1. Run EF Core Migrations
  1. dotnet ef database update
  1. Change Client Url and API Url in Client App (Project: FormBuilder.Web, File: wwwroot/js/demo.js, Line 2-3)

    1. var baseUrl = 'http://localhost:51468/';
    2. var baseApiUrl = 'http://localhost:50730/api/v1';
  2. Run the project and Enjoy! :bomb:

  1. dotnet run

Demo

You can try it on Angular App :gun:

Built With

Contributing

  • If you want to contribute to codes, create pull request
  • If you find any bugs or error, create an issue