DragonFly.Templates
0.9.7
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet new install DragonFly.Templates::0.9.7
This package contains a .NET Template Package you can call from the shell/command line.
DragonFly
Headless CMS based on ASP.NET Core and Blazor
Getting started
Prerequisites
- .NET 7.0 SDK
- Visual Studio 2022
- MongoDB instance
Create a new project from template
To use the project template you need first to download and install it from NuGet.
dotnet new install DragonFly.Templates
After this you can create the project with:
dotnet new DragonFly
If you have a remote MongoDB instance, you need to add some appsettings:
"MongoDB": {
"Hostname": "localhost",
"Database": "DragonFly_App",
"Port": 27017,
"Username": "MY_MONGODB_USER",
"Password": "MY_MONGODB_PASSWORD"
},
DragonFly
Supported fields
- StringField
- FloatField
- BoolField
- AssetField
- ReferenceField
- ComponentField
- ArrayField
- DateField
- IntegerField
- ColorField
- GeoLocationField
- SlugField
- XmlField
- HtmlField
- BlockField (HeadingBlock, TextBlock, HtmlBlock, CodeBlock, ContainerBlock, ColumnBlock, AssetBlock, ReferenceBlock, GridBlock,..)
How to create new content schema and content item
IContentStorage contentStorage = ...;//use MongoStorage or ClientContentService (http client)
//create brand schema
ContentSchema schemaBrand = new ContentSchema("Brand")
.AddString("Name")
.AddSlug("Slug")
.AddTextArea("Description");
//Define schema for product
ContentSchema schemaProduct = new ContentSchema("Product")
.AddReference("Brand")
.AddString("Name", options => options.IsRequired = true)
.AddSlug("Slug")
.AddBool("IsAvailable", options => options.DefaultValue = true)
.AddFloat("Price")
.AddTextArea("Description", options => options.MaxLength = 255)
.AddArray("Attributes", options => options
.AddString("Name")
.AddString("Value"));
await contentStorage.CreateAsync(schemaProduct);
//create product by schema
ContentItem contentProduct = schemaProduct
.CreateContent()
.SetReference("Brand", new ContentItem(Guid.Parse(""), schemaBrand))
.SetString("Name", "ProductA")
.SetBool("IsAvailable", true)
.SetFloat("Price", 9.99)
.SetTextArea("Description", "...")
.AddArrayItem("Attributes", schemaProduct, item => item
.SetString("Name", "Size")
.SetString("Value", "M"));
await contentStorage.CreateAsync(contentProduct);
DragonFly.AspNetCore
builder.Services.Configure<DragonFlyOptions>(Configuration.GetSection("General"));
builder.Services.Configure<MongoDbOptions>(Configuration.GetSection("MongoDB"));
//add DragonFly services
builder.Services.AddDragonFly()
.AddImageWizard()
.AddRestApi()
.AddMongoDbStorage()
.AddMongoDbIdentity()
.AddBlockField()
.AddApiKeys()
.AddPermissions();
var app = builder.Build();
//init DragonFly
await app.InitDragonFly();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseWebAssemblyDebugging();
}
app.UseDragonFly(x => x
.MapImageWizard()
.MapApiKey()
.MapIdentity()
.MapRestApi()
.MapPermission());
app.UseDragonFlyManager();
app.UseRouting();
app.Run();
DragonFly.Client (Blazor)
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<DragonFly.App.Client.App>("app");
//Register DragonFly components
builder.AddDragonFly()
.AddRestApi()
.AddBlockField()
.AddIdentity()
.AddApiKeys();
WebAssemblyHost host = builder.Build();
await host.InitDragonFly();
await host.RunAsync();
Docker
version: "2"
services:
app:
image: usercode/dragonfly
container_name: catalog
restart: always
networks:
- default
volumes:
- catalog_cache:/cache
environment:
- MongoDB__Database=DragonFly_App
- MongoDB__Hostname=catalog_db
- MongoDB__Username=root
- MongoDB__Password=YOUR_PASSWORD
- MongoDB__InitialUsername=admin
- MongoDB__InitialPassword=Password123
- AssetCache__Folder=/cache
- ImageWizard__Key=YOUR_IMAGEWIZARD_KEY
depends_on:
- db
db:
image: mongo:4.4
container_name: catalog_db
restart: always
networks:
- default
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=YOUR_PASSWORD
volumes:
- catalog_db:/data/db
- catalog_configdb:/data/configdb
volumes:
catalog_db:
external: true
catalog_configdb:
external: true
catalog_cache:
external: true
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.17 | 38 | 11/17/2024 |
1.0.15 | 287 | 4/27/2024 |
1.0.14 | 112 | 4/27/2024 |
1.0.12 | 247 | 3/19/2024 |
1.0.10 | 212 | 3/19/2024 |
1.0.8 | 467 | 3/8/2024 |
1.0.7 | 243 | 3/3/2024 |
1.0.6 | 418 | 2/22/2024 |
1.0.5 | 554 | 2/7/2024 |
1.0.4 | 681 | 1/19/2024 |
1.0.3 | 392 | 1/10/2024 |
1.0.2 | 1,191 | 12/3/2023 |
1.0.1 | 220 | 12/2/2023 |
1.0.0 | 206 | 11/30/2023 |
0.9.31 | 443 | 7/27/2023 |
0.9.22 | 205 | 6/30/2023 |
0.9.17 | 197 | 5/9/2023 |
0.9.16 | 179 | 4/28/2023 |
0.9.15 | 186 | 4/27/2023 |
0.9.11 | 320 | 3/19/2023 |
0.9.10 | 274 | 3/8/2023 |
0.9.9 | 229 | 3/3/2023 |
0.9.8 | 346 | 1/29/2023 |
0.9.7 | 313 | 1/27/2023 |
0.9.6 | 349 | 1/27/2023 |
0.9.5 | 338 | 1/25/2023 |
0.9.3 | 344 | 1/4/2023 |
0.9.2 | 357 | 1/3/2023 |
0.9.1 | 370 | 12/28/2022 |
0.9.0 | 320 | 12/28/2022 |
0.8.4 | 351 | 12/19/2022 |
0.8.3 | 290 | 12/18/2022 |
0.8.2 | 289 | 12/18/2022 |
0.8.1 | 346 | 12/18/2022 |
0.8.0 | 333 | 12/18/2022 |