delphimvcframework/samples/WineCellarSample/winecellarserver/MainWebModuleUnit.pas

53 lines
992 B
ObjectPascal
Raw Normal View History

2023-02-02 19:14:34 +01:00
unit MainWebModuleUnit;
interface
uses
System.SysUtils,
System.Classes,
Web.HTTPApp,
MVCFramework;
type
Twm = class(TWebModule)
procedure WebModuleCreate(Sender: TObject);
private
MVCEngine: TMVCEngine;
public
{ Public declarations }
end;
var
WebModuleClass: TComponentClass = Twm;
implementation
uses
WineCellarAppControllerU,
MVCFramework.Commons,
MVCFramework.Middleware.StaticFiles,
System.IOUtils;
{$R *.dfm}
procedure Twm.WebModuleCreate(Sender: TObject);
begin
MVCEngine := TMVCEngine.Create(self,
procedure(Conf: TMVCConfig)
begin
// Conf.Value[tmvcconfigkey.PathPrefix] := '/dmvc';
end);
MVCEngine.AddController(TWineCellarApp);
if not IsLibrary then
begin
MVCEngine.AddMiddleware(TMVCStaticFilesMiddleware.Create('/app', { StaticFilesPath }
TPath.Combine(AppPath, '..\..\www'), { DocumentRoot }
'index.html' { IndexDocument - Before it was named fallbackresource }
));
end;
end;
end.