2013-10-29 16:51:16 +01:00
|
|
|
unit MainWebModuleUnit;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
2018-08-05 20:31:33 +02:00
|
|
|
uses
|
|
|
|
System.SysUtils,
|
|
|
|
System.Classes,
|
|
|
|
Web.HTTPApp,
|
|
|
|
MVCFramework;
|
2013-10-29 16:51:16 +01:00
|
|
|
|
|
|
|
type
|
|
|
|
Twm = class(TWebModule)
|
|
|
|
procedure WebModuleCreate(Sender: TObject);
|
|
|
|
|
|
|
|
private
|
|
|
|
MVCEngine: TMVCEngine;
|
|
|
|
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
WebModuleClass: TComponentClass = Twm;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
2018-08-05 20:31:33 +02:00
|
|
|
WineCellarAppControllerU,
|
|
|
|
MVCFramework.Commons,
|
2020-04-29 01:59:41 +02:00
|
|
|
MVCFramework.Middleware.StaticFiles,
|
2018-08-05 20:31:33 +02:00
|
|
|
System.IOUtils;
|
2013-10-29 16:51:16 +01:00
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
2020-05-11 23:39:43 +02:00
|
|
|
|
2013-10-29 16:51:16 +01:00
|
|
|
procedure Twm.WebModuleCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
MVCEngine := TMVCEngine.Create(self);
|
|
|
|
MVCEngine.AddController(TWineCellarApp);
|
2020-04-29 01:59:41 +02:00
|
|
|
MVCEngine.AddMiddleware(TMVCStaticFilesMiddleware.Create(
|
|
|
|
'/', { StaticFilesPath }
|
|
|
|
TPath.Combine(AppPath, '..\..\www'), { DocumentRoot }
|
2020-05-11 23:39:43 +02:00
|
|
|
'index.html' { IndexDocument - Before it was named fallbackresource }
|
2020-04-29 01:59:41 +02:00
|
|
|
));
|
2013-10-29 16:51:16 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|