Angular Form Builder with ASP.NET Core Web API
Create your form dynamically and share your form to people
First of all, you need to clone the project to your local machine
git clone https://github.com/peacecwz/angular-form-builder.git
cd angular-form-builder
A step by step series of building that project
dotnet restore
Change connection string of Database (Project: FormBuilder.API, File: appsettings.Development.json, Line: 3)
(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)
//For Microsoft SQL Server
services.AddDbContext<FormBuilderDbContext>(options =>
{
options.UseSqlServer(connectionString,
builder => builder.MigrationsAssembly("FormBuilder.API"));
});
3.1 Delete Migrations Folder
3.2 Create New Migrations for SQL Server or another DB Providers
dotnet ef migrations add InitDb
dotnet ef database update
Change Client Url and API Url in Client App (Project: FormBuilder.Web, File: wwwroot/js/demo.js, Line 2-3)
var baseUrl = 'http://localhost:51468/';
var baseApiUrl = 'http://localhost:50730/api/v1';
Run the project and Enjoy!
dotnet run
You can try it on Angular App