Skip to content

peacecwz-archive/angular-form-builder

Repository files navigation

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

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

Building

A step by step series of building that project

  1. Restore the project 🔨
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)

    //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
  1. Run EF Core Migrations
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)
var baseUrl = 'http://localhost:51468/';
var baseApiUrl = 'http://localhost:50730/api/v1';
  1. Run the project and Enjoy! 💣
dotnet run

Demo

You can try it on Angular App 🔫

Built With

Contributing

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

Releases

No releases published

Packages

No packages published