Тёмный

Using Orchard Core as a Decoupled CMS 

Lombiq
Подписаться 1,9 тыс.
Просмотров 31 тыс.
50% 1

Meeting notes:
-- 0:17 - The differences between Standard CMS, Headless CMS and Decupled CMS
-- 11:31 - Create a new tenant to host content based on the Blank recipe
-- 17:10 - Create a test page on the web app directly
-- 20:40 - Copy a static theme to the website
-- 25:57 - Start making the static theme dynamic
-- 46:18 - Design content types and content items start with Services
-- 49:44 - Display Service content items in the homepage
-- 1:00:56 - Create the Services page
-- 1:04:27 - Add Banner Media Field to Services content type
-- 1:06:45 - Display the image of the Banner Media Field in the frontend using Tag Helper
-- 1:19:35 - Create Project content type
-- 1:23:37 - Render the Project content items in the homepage
-- 1:31:16 - Create a detail page for the Project content items
-- 1:38:11 - Create a Blockquote widget
-- 1:47:38 - Create a Deployment plan and export all content definitions and add more tenants based on the recipe
-- 1:56:53 - The DynamicCache Tag Helper
Brought to you by Lombiq Technologies: lombiq.com
Orchard CMS official site: orchardproject.net

Наука

Опубликовано:

 

18 сен 2018

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 32   
@ThangLe-oz1nz
@ThangLe-oz1nz 2 месяца назад
at 01:36:55 i have found that we need to change the import library in header Layout file (~/vendor, ~/css). Btw, thank for your knowledge sharing
@VB1991C
@VB1991C 11 месяцев назад
Is there any way to create dynamic forms using CMS and after post I want to do some business logic and then save my own Database not in CMS DB ....also my front end page also editable Thanks
@NevilleFarrell
@NevilleFarrell 5 лет назад
Hi, this is a great tutorial. Thank you so much! However, still struggling to get Orchard Core working in a decoupled architecture. Is the source code for your demo available anywhere?
@Lombiq
@Lombiq 5 лет назад
Unfortunately we don't have the source code. Try to ask around in the Orchard Core Gitter room (gitter.im/OrchardCMS/OrchardCore), maybe somebody there has this code. FYI: the code for the SaaS demo is available here: github.com/Lombiq/Orchard-Core-SaaS-Sample
@mrsmith5955
@mrsmith5955 4 года назад
@@Lombiq I'm struggling too, because I can't seem to get access to any of the other API's to use within the layout template, the video didn't show that.
@Lombiq
@Lombiq 4 года назад
@@mrsmith5955 Which part are you referring to exactly, David?
@mrsmith5955
@mrsmith5955 4 года назад
@@LombiqI figured it out with help on GITTER. Basically when creating a decoupled CMS you only have access to IOrchardHelper. I was trying to get the full API via inheritance from RazorPage like the themes thx
@Lombiq
@Lombiq 4 года назад
@@mrsmith5955 Great then, thanks for letting us know!
@BrianBehm
@BrianBehm 5 лет назад
Does this decoupling only work with razor pages or would it also work with MVC controllers?
@Lombiq
@Lombiq 5 лет назад
It also works with MVC controllers.
@BrianBehm
@BrianBehm 5 лет назад
@@Lombiq is there a good demonstration about how to start out a new project? I'm looking for a CMS that I can add on to an ASP.Net Core MVC site by maybe just adding some NuGet package and configuring the middleware. Does Orchard support that?
@Lombiq
@Lombiq 5 лет назад
Of course, any module of Orchard Core is a NuGet package, and the heart and soul of Orchard Core is also available as a NuGet package: www.nuget.org/packages/OrchardCore.Mvc.Core/1.0.0-beta2-67846
@ibiza4208
@ibiza4208 4 года назад
@@Lombiq Hi! I would like too to use Orchard CMS with my own custom Controllers and Views. So far I am having difficulties setting up the Startup.cs correctly so I can acces both the /admin CMS backend and my own routes and Controllers/Views. Any resources that you can recommend for allowing me to succeed into this? Thanks!
@strikerbh
@strikerbh 4 года назад
Hello, do you have any examples of Orchard Core publishing, IIS configuration, and server execution? Thank you.
@Lombiq
@Lombiq 4 года назад
While we don't have this specifically at hand publishing an Orchard Core app to IIS is pretty much just like publishing any ASP.NET (Core) app. So any generic guide on this should help you.
@strikerbh
@strikerbh 4 года назад
@@Lombiq Thanks. I have another question. In the pre-core release, Orchard had news comment management, has this feature been deprecated or not yet migrated to .Net core?
@Lombiq
@Lombiq 4 года назад
@@strikerbh It's just that nobody really felt the need for it yet. Feel free to add your feature request to the Orchard Core issue tracker.
@kaboomly
@kaboomly 4 года назад
The overall size of the project is too large. How do we optimize it before uploading to FTP? Thanks to everyone on the team. You have done a great project.
@Lombiq
@Lombiq 4 года назад
You can build an Orchard solution from NuGet packages: Then you can only select those packages you need to cut down on the size of the deployment package. However, if you don't deploy via simple FTP but e.g. Web Deploy then the app will be compressed and only changed files be deployed.
@kaboomly
@kaboomly 4 года назад
@@Lombiq thanks.. When I build it, it takes up 300+ MB of space.
@lusonala7073
@lusonala7073 4 года назад
Lombiq, please tell me if there is some way of importing all database content from one Ochard Core project to another ..... I've tried recipes, import package and nothing works ! I wanna test if i can copy all users in one ochard project to another orchard project
@Lombiq
@Lombiq 4 года назад
You can use recipes to move content and other specifically supported configuration (like roles) of an Orchard site. Users are not content, nor have support for the Deployment feature and recipes, so, unfortunately, this is not so easy. If you want to just copy an Orchard site's content and configuration you can simply copy the database and media files from the file system. If you just want to move users then you'll need to implement such a feature or try to just copy the related documents and index tables from the DB, but this will be challenging. Please open a feature request for this in the issue tracker: github.com/OrchardCMS/OrchardCore/issues
@lusonala7073
@lusonala7073 4 года назад
@@Lombiq Thank you!
@AmirNasiruddinSayani
@AmirNasiruddinSayani Год назад
@lombiq can you share source code written in the video?
@Lombiq
@Lombiq Год назад
Unfortunately, we don't have the source code. Try to ask around in the Orchard Core Gitter room (gitter.im/OrchardCMS/OrchardCore), maybe somebody there has this code. Or you can check out this post, here you can read more about this demo code: orcharddojo.net/blog/this-week-in-orchard-9-21-2018
@masterlet-2808
@masterlet-2808 4 года назад
Your videos are not helping matters. They just start from the middle and then you give a link to the complete project on git. There's no step by step video for absolute beginners.
@stellawanjiku8023
@stellawanjiku8023 5 лет назад
Please!!, not to be a pain but it's so hard to listen and understand what you are saying in all your videos. For the sake of your international audience please speak more clearly / intonation otherwise get somebody to do the voice over.
@lorcerothart
@lorcerothart 5 лет назад
Sharpen your ears, I had no problem understanding him and english is not my mother tongue :P
@sebastienros
@sebastienros 4 года назад
I am definitely thinking about this. Ideally I could make nice looking videos and get someone dubbing me over, in any language actually. Was wondering if there were such tools to publish on youtube all these voice over.
@kingakim11
@kingakim11 4 года назад
@@sebastienros For other languages I could see it being useful, for English tho. I wouldn't bother. I actually like the way you speak, very engaging and energetic. I never feel bored or that something is too difficult, the way you deliver the material. Keep up the great work.
Далее
Implementing a SaaS module in Orchard Core
2:00:48
Просмотров 9 тыс.
Demoing the capabilities of Orchard Core Beta 2
1:47:33
O-Zone - Numa Numa yei на русском!🤓
00:56
Просмотров 122 тыс.
Showcasing Orchard Core CMS
1:10:46
Просмотров 10 тыс.
Building a theme for Orchard Core from scratch
2:25:36
Просмотров 20 тыс.
Elsa Workflows - Orchard Core Demo
36:46
Просмотров 6 тыс.