├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── bin ├── README.md ├── out │ └── README.md └── unit │ └── README.md ├── src ├── Apps │ ├── Implementations │ │ └── FanoAppImpl.pas │ └── Includes │ │ └── units.inc ├── Libs │ ├── Dir │ │ ├── Contracts │ │ │ ├── DirectoryCreatorIntf.pas │ │ │ └── DirectoryExistsIntf.pas │ │ └── Implementations │ │ │ ├── DirectoryCreatorImpl.pas │ │ │ ├── DirectoryExistsImpl.pas │ │ │ └── NullDirectoryExistsImpl.pas │ ├── File │ │ ├── Contracts │ │ │ ├── ContentModifierIntf.pas │ │ │ ├── FileContentAppenderIntf.pas │ │ │ ├── FileContentReaderIntf.pas │ │ │ ├── FileContentWriterIntf.pas │ │ │ └── TextFileCreatorIntf.pas │ │ └── Implementations │ │ │ ├── ContentModifierImpl.pas │ │ │ ├── CopyrightContentModifierImpl.pas │ │ │ ├── DecoratorContentModifierImpl.pas │ │ │ ├── FileHelperAppendImpl.pas │ │ │ ├── FileHelperImpl.pas │ │ │ ├── NullContentModifierImpl.pas │ │ │ ├── StdoutTextFileCreatorImpl.pas │ │ │ ├── TextFileCreatorImpl.pas │ │ │ └── TextFileCreatorWithModifierImpl.pas │ ├── Includes │ │ └── units.inc │ ├── KeyGen │ │ ├── Contracts │ │ │ └── KeyGeneratorIntf.pas │ │ └── Implementations │ │ │ └── BasicKeyGeneratorImpl.pas │ ├── List │ │ ├── Contracts │ │ │ └── ListIntf.pas │ │ └── Implementations │ │ │ └── HashListImpl.pas │ ├── Minifier │ │ ├── Contracts │ │ │ └── MinifierIntf.pas │ │ └── Implementations │ │ │ ├── CssMinifierImpl.pas │ │ │ └── JsMinifierImpl.pas │ └── Utils │ │ ├── cssmin.pas │ │ └── strformats.pas ├── Tasks │ ├── Contracts │ │ ├── TaskFactoryIntf.pas │ │ ├── TaskInfoIntf.pas │ │ ├── TaskIntf.pas │ │ ├── TaskListAwareIntf.pas │ │ └── TaskOptionsIntf.pas │ ├── Implementations │ │ ├── Base │ │ │ ├── AddToUnitSearchTaskImpl.pas │ │ │ ├── AddToUsesClauseTaskImpl.pas │ │ │ ├── BaseCreateFileTaskImpl.pas │ │ │ ├── CreateDependencyRegistrationTaskImpl.pas │ │ │ ├── CreateDependencyTaskImpl.pas │ │ │ └── CreateFileConsts.pas │ │ ├── ChangeDir │ │ │ └── ChangeDirTaskImpl.pas │ │ ├── Composite │ │ │ ├── CompositeTaskImpl.pas │ │ │ ├── ConditionalCompositeTaskImpl.pas │ │ │ ├── GroupTaskImpl.pas │ │ │ └── NamedCompositeTaskImpl.pas │ │ ├── Config │ │ │ ├── CompositeConfigTaskImpl.pas │ │ │ └── ForceConfigDecoratorTaskImpl.pas │ │ ├── Controller │ │ │ ├── CreateControllerFactoryFileTaskImpl.pas │ │ │ ├── CreateControllerFileTaskImpl.pas │ │ │ ├── CreateControllerTaskImpl.pas │ │ │ ├── CreateMultiRouteTaskImpl.pas │ │ │ ├── CreateRouteTaskImpl.pas │ │ │ ├── Factories │ │ │ │ └── CreateControllerTaskFactoryImpl.pas │ │ │ ├── Includes │ │ │ │ ├── rest.controller.factory.pas.inc │ │ │ │ ├── rest.controller.pas.inc │ │ │ │ └── routes.inc.inc │ │ │ ├── WithMultiRouteTaskImpl.pas │ │ │ └── WithNoRouteTaskImpl.pas │ │ ├── Csrf │ │ │ ├── CreateCsrfMiddlewareDependenciesTaskImpl.pas │ │ │ ├── ForceConfigSessionDecoratorTaskImpl.pas │ │ │ ├── Includes │ │ │ │ └── csrf.dependencies.inc │ │ │ └── WithCsrfTaskImpl.pas │ │ ├── Daemon │ │ │ └── SystemD │ │ │ │ ├── Factories │ │ │ │ └── SystemDDaemonTaskFactoryImpl.pas │ │ │ │ ├── Includes │ │ │ │ └── daemon.service.inc │ │ │ │ └── SystemDDaemonTaskImpl.pas │ │ ├── Decorator │ │ │ ├── DecoratorTaskImpl.pas │ │ │ └── WithOptionsDecoratorTaskImpl.pas │ │ ├── Deploy │ │ │ ├── Balancer │ │ │ │ └── Factories │ │ │ │ │ └── XDeployBalancerTaskFactoryImpl.pas │ │ │ ├── Cgi │ │ │ │ └── Factories │ │ │ │ │ └── XDeployCgiTaskFactoryImpl.pas │ │ │ ├── Core │ │ │ │ ├── AddDomainToEtcHostTaskImpl.pas │ │ │ │ ├── DeployTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── AbstractDeployTaskFactoryImpl.pas │ │ │ │ ├── WebServer │ │ │ │ │ ├── Apache │ │ │ │ │ │ ├── ApacheDebianVHostWriterImpl.pas │ │ │ │ │ │ ├── ApacheEnableVhostTaskImpl.pas │ │ │ │ │ │ ├── ApacheFedoraVHostWriterImpl.pas │ │ │ │ │ │ ├── ApacheFreeBsdVHostWriterImpl.pas │ │ │ │ │ │ ├── ApacheReloadWebServerTaskImpl.pas │ │ │ │ │ │ ├── ApacheVHostBalancerTplImpl.pas │ │ │ │ │ │ ├── ApacheVHostCgiTplImpl.pas │ │ │ │ │ │ ├── ApacheVHostFcgiTplImpl.pas │ │ │ │ │ │ ├── ApacheVHostFcgidTplImpl.pas │ │ │ │ │ │ ├── ApacheVHostHttpTplImpl.pas │ │ │ │ │ │ ├── ApacheVHostScgiTplImpl.pas │ │ │ │ │ │ ├── ApacheVHostUwsgiTplImpl.pas │ │ │ │ │ │ ├── ApacheWindowsVHostWriterImpl.pas │ │ │ │ │ │ └── Includes │ │ │ │ │ │ │ ├── balancer.vhost.conf.inc │ │ │ │ │ │ │ ├── cgi.vhost.conf.inc │ │ │ │ │ │ │ ├── fcgi.vhost.conf.inc │ │ │ │ │ │ │ ├── fcgid.vhost.conf.inc │ │ │ │ │ │ │ ├── http.vhost.conf.inc │ │ │ │ │ │ │ ├── scgi.vhost.conf.inc │ │ │ │ │ │ │ └── uwsgi.vhost.conf.inc │ │ │ │ │ ├── BaseWebServerVirtualHostTaskImpl.pas │ │ │ │ │ ├── Contracts │ │ │ │ │ │ ├── VirtualHostIntf.pas │ │ │ │ │ │ ├── VirtualHostTemplateIntf.pas │ │ │ │ │ │ └── VirtualHostWriterIntf.pas │ │ │ │ │ ├── Nginx │ │ │ │ │ │ ├── BaseNginxVirtualHostTaskImpl.pas │ │ │ │ │ │ ├── FcgidCheck │ │ │ │ │ │ │ └── FcgidCheckTaskImpl.pas │ │ │ │ │ │ ├── Includes │ │ │ │ │ │ │ ├── balancer.vhost.conf.inc │ │ │ │ │ │ │ ├── fcgi.vhost.conf.inc │ │ │ │ │ │ │ ├── http.vhost.conf.inc │ │ │ │ │ │ │ ├── scgi.vhost.conf.inc │ │ │ │ │ │ │ └── uwsgi.vhost.conf.inc │ │ │ │ │ │ ├── NginxFreeBsdVHostWriterImpl.pas │ │ │ │ │ │ ├── NginxLinuxVHostWriterImpl.pas │ │ │ │ │ │ ├── NginxReloadWebServerTaskImpl.pas │ │ │ │ │ │ ├── NginxVHostBalancerTplImpl.pas │ │ │ │ │ │ ├── NginxVHostFcgiTplImpl.pas │ │ │ │ │ │ ├── NginxVHostHttpTplImpl.pas │ │ │ │ │ │ ├── NginxVHostScgiTplImpl.pas │ │ │ │ │ │ ├── NginxVHostUwsgiTplImpl.pas │ │ │ │ │ │ └── NginxWindowsVHostWriterImpl.pas │ │ │ │ │ ├── ReloadWebServerTaskImpl.pas │ │ │ │ │ ├── VirtualHostImpl.pas │ │ │ │ │ ├── VirtualHostWriterImpl.pas │ │ │ │ │ └── WebServerVirtualHostTaskImpl.pas │ │ │ │ ├── WebServerTaskImpl.pas │ │ │ │ └── WithSkipEtcHostTaskImpl.pas │ │ │ ├── Fcgi │ │ │ │ └── Factories │ │ │ │ │ └── XDeployFcgiTaskFactoryImpl.pas │ │ │ ├── FcgiBalancer │ │ │ │ └── Factories │ │ │ │ │ └── XDeployFcgiBalancerTaskFactoryImpl.pas │ │ │ ├── Fcgid │ │ │ │ └── Factories │ │ │ │ │ └── XDeployFcgidTaskFactoryImpl.pas │ │ │ ├── Http │ │ │ │ └── Factories │ │ │ │ │ └── XDeployHttpTaskFactoryImpl.pas │ │ │ ├── HttpBalancer │ │ │ │ └── Factories │ │ │ │ │ └── XDeployHttpBalancerTaskFactoryImpl.pas │ │ │ ├── Scgi │ │ │ │ └── Factories │ │ │ │ │ └── XDeployScgiTaskFactoryImpl.pas │ │ │ ├── ScgiBalancer │ │ │ │ └── Factories │ │ │ │ │ └── XDeployScgiBalancerTaskFactoryImpl.pas │ │ │ ├── Uwsgi │ │ │ │ └── Factories │ │ │ │ │ └── XDeployUwsgiTaskFactoryImpl.pas │ │ │ └── UwsgiBalancer │ │ │ │ └── Factories │ │ │ │ └── XDeployUwsgiBalancerTaskFactoryImpl.pas │ │ ├── Duplicate │ │ │ ├── DuplicateCheckTaskImpl.pas │ │ │ ├── DuplicateCtrlCheckTaskImpl.pas │ │ │ ├── DuplicateMiddlewareCheckTaskImpl.pas │ │ │ ├── DuplicateModelCheckTaskImpl.pas │ │ │ └── DuplicateViewCheckTaskImpl.pas │ │ ├── EmptyDirCheck │ │ │ └── EmptyDirCheckTaskImpl.pas │ │ ├── GuidGen │ │ │ └── GuidGenTaskImpl.pas │ │ ├── InFanoProjectDirCheck │ │ │ └── InFanoProjectDirCheckTaskImpl.pas │ │ ├── Info │ │ │ ├── InfoTaskImpl.pas │ │ │ ├── SingleInfoTaskImpl.pas │ │ │ └── WithSingleInfoTaskImpl.pas │ │ ├── KeyGen │ │ │ ├── Factories │ │ │ │ └── KeyGenTaskFactoryImpl.pas │ │ │ └── KeyGenTaskImpl.pas │ │ ├── Logger │ │ │ ├── AbstractCreateLoggerDependenciesTaskImpl.pas │ │ │ ├── CompositeLoggerDependenciesTaskImpl.pas │ │ │ ├── CreateDbLoggerDependenciesTaskImpl.pas │ │ │ ├── CreateFileLoggerDependenciesTaskImpl.pas │ │ │ ├── CreateSyslogLoggerDependenciesTaskImpl.pas │ │ │ ├── Includes │ │ │ │ ├── dblogger.dependencies.inc │ │ │ │ ├── filelogger.dependencies.inc │ │ │ │ └── sysloglogger.dependencies.inc │ │ │ └── WithLoggerTaskImpl.pas │ │ ├── Middleware │ │ │ ├── Create │ │ │ │ ├── CreateMiddlewareFactoryFileTaskImpl.pas │ │ │ │ ├── CreateMiddlewareFileTaskImpl.pas │ │ │ │ ├── CreateMiddlewareTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateMiddlewareTaskFactoryImpl.pas │ │ │ │ ├── Includes │ │ │ │ │ ├── middleware.factory.pas.inc │ │ │ │ │ └── middleware.pas.inc │ │ │ │ └── MiddlewareAddToUnitSearchTaskImpl.pas │ │ │ └── Support │ │ │ │ ├── CreateMiddlewareDependenciesTaskImpl.pas │ │ │ │ ├── CreateNoMiddlewareDependenciesTaskImpl.pas │ │ │ │ └── Includes │ │ │ │ ├── buildDispatcher.decl.inc │ │ │ │ └── buildDispatcher.impl.inc │ │ ├── Minifier │ │ │ ├── DirFileMinifierTaskImpl.pas │ │ │ ├── Factories │ │ │ │ ├── CssMinifierTaskFactoryImpl.pas │ │ │ │ └── JsMinifierTaskFactoryImpl.pas │ │ │ ├── MinifyDirTaskImpl.pas │ │ │ └── MinifyFileTaskImpl.pas │ │ ├── Model │ │ │ ├── CreateModelFactoryFileTaskImpl.pas │ │ │ ├── CreateModelFileTaskImpl.pas │ │ │ ├── CreateModelTaskImpl.pas │ │ │ ├── Factories │ │ │ │ └── CreateModelTaskFactoryImpl.pas │ │ │ └── Includes │ │ │ │ ├── model.factory.pas.inc │ │ │ │ └── model.pas.inc │ │ ├── Mvc │ │ │ └── Factories │ │ │ │ └── CreateMvcTaskFactoryImpl.pas │ │ ├── NotInFanoProjectDirCheck │ │ │ └── NotInFanoProjectDirCheckTaskImpl.pas │ │ ├── Null │ │ │ ├── Factories │ │ │ │ └── NullTaskFactoryImpl.pas │ │ │ └── NullTaskImpl.pas │ │ ├── Project │ │ │ ├── Cgi │ │ │ │ ├── CreateCgiAppFileTaskImpl.pas │ │ │ │ ├── CreateCgiDockerfileTaskImpl.pas │ │ │ │ ├── CreateCgiReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateAppBootstrapCgiTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ ├── app.pas.inc │ │ │ │ │ ├── dockercompose.inc │ │ │ │ │ ├── dockerfile.inc │ │ │ │ │ ├── readme.md.inc │ │ │ │ │ └── vhost.example.inc │ │ │ ├── Core │ │ │ │ ├── AddFanoRepoTaskImpl.pas │ │ │ │ ├── BaseGitRepoTaskImpl.pas │ │ │ │ ├── BaseProjectTaskImpl.pas │ │ │ │ ├── CheckoutFanoRepoTaskImpl.pas │ │ │ │ ├── CommitGitRepoTaskImpl.pas │ │ │ │ ├── CreateAdditionalFilesTaskImpl.pas │ │ │ │ ├── CreateAppConfigsTaskImpl.pas │ │ │ │ ├── CreateAppFileTaskImpl.pas │ │ │ │ ├── CreateBasicFileTaskImpl.pas │ │ │ │ ├── CreateBootstrapFileTaskImpl.pas │ │ │ │ ├── CreateCompilerConfigsTaskImpl.pas │ │ │ │ ├── CreateConfigMethodTaskImpl.pas │ │ │ │ ├── CreateCurlCompilerConfigsTaskImpl.pas │ │ │ │ ├── CreateDepFileTaskImpl.pas │ │ │ │ ├── CreateDirTaskImpl.pas │ │ │ │ ├── CreateDispatcherMethodTaskImpl.pas │ │ │ │ ├── CreateFileTaskImpl.pas │ │ │ │ ├── CreateProjectTaskImpl.pas │ │ │ │ ├── CreateReadmeFileTaskImpl.pas │ │ │ │ ├── CreateRouteFileTaskImpl.pas │ │ │ │ ├── CreateShellScriptsTaskImpl.pas │ │ │ │ ├── DecoratorCreateCompilerConfigsTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateProjectTaskFactoryImpl.pas │ │ │ │ ├── Includes │ │ │ │ │ ├── appconfig.dependencies.inc.inc │ │ │ │ │ ├── bootstrap.pas.inc │ │ │ │ │ ├── build.cfg.inc │ │ │ │ │ ├── build.cmd.inc │ │ │ │ │ ├── build.dev.cfg.inc │ │ │ │ │ ├── build.prod.cfg.inc │ │ │ │ │ ├── build.sh.inc │ │ │ │ │ ├── clean.cmd.inc │ │ │ │ │ ├── clean.sh.inc │ │ │ │ │ ├── config.setup.cmd.inc │ │ │ │ │ ├── config.setup.sh.inc │ │ │ │ │ ├── controllers.dependencies.inc.inc │ │ │ │ │ ├── default.appconfig.dependencies.inc.inc │ │ │ │ │ ├── defines.cfg.inc │ │ │ │ │ ├── dependencies.inc.inc │ │ │ │ │ ├── env.inc │ │ │ │ │ ├── gitignore.inc │ │ │ │ │ ├── htaccess.example.inc │ │ │ │ │ ├── main.dependencies.inc.inc │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── buildAppConfig.decl.inc │ │ │ │ │ │ └── buildAppConfig.impl.inc │ │ │ │ │ ├── middlewares.dependencies.inc.inc │ │ │ │ │ ├── models.dependencies.inc.inc │ │ │ │ │ ├── routes.inc.inc │ │ │ │ │ ├── simulate.run.cmd.inc │ │ │ │ │ ├── simulate.run.sh.inc │ │ │ │ │ └── views.dependencies.inc.inc │ │ │ │ ├── InitGitRepoTaskImpl.pas │ │ │ │ ├── RegisterConfigDependencyTaskImpl.pas │ │ │ │ ├── StageRepoTaskImpl.pas │ │ │ │ ├── WithGitInitialCommitTaskImpl.pas │ │ │ │ └── WithGitRepoTaskImpl.pas │ │ │ ├── Daemon │ │ │ │ ├── CreateDaemonBootstrapFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateDaemonProjectTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ └── bootstrap.pas.inc │ │ │ ├── FastCgi │ │ │ │ ├── CreateFcgiAppFileTaskImpl.pas │ │ │ │ ├── CreateFcgiDockerfileTaskImpl.pas │ │ │ │ ├── CreateFcgiReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateAppBootstrapFcgiTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ ├── app.pas.inc │ │ │ │ │ ├── dockercompose.inc │ │ │ │ │ ├── fano_dockerfile.inc │ │ │ │ │ ├── httpd_dockerfile.inc │ │ │ │ │ ├── readme.md.inc │ │ │ │ │ └── vhost.example.inc │ │ │ ├── Fcgid │ │ │ │ ├── CreateFcgidAppFileTaskImpl.pas │ │ │ │ ├── CreateFcgidDockerfileTaskImpl.pas │ │ │ │ ├── CreateFcgidReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateAppBootstrapFcgidTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ ├── app.pas.inc │ │ │ │ │ ├── dockercompose.inc │ │ │ │ │ ├── dockerfile.inc │ │ │ │ │ ├── readme.md.inc │ │ │ │ │ └── vhost.example.inc │ │ │ ├── Fpweb │ │ │ │ ├── CreateFpwebAppFileTaskImpl.pas │ │ │ │ ├── CreateFpwebReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateAppBootstrapFpwebTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ ├── app.pas.inc │ │ │ │ │ └── readme.md.inc │ │ │ ├── Helper │ │ │ │ └── Factories │ │ │ │ │ ├── CreateAppBootstrapTaskFactoryImpl.pas │ │ │ │ │ ├── CreateProjectDependenciesTaskFactoryImpl.pas │ │ │ │ │ └── WithSessionOrMiddlewareTaskImpl.pas │ │ │ ├── Indy │ │ │ │ ├── CreateIndyAppFileTaskImpl.pas │ │ │ │ ├── CreateIndyCompilerConfigsTaskImpl.pas │ │ │ │ ├── CreateIndyReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ ├── CreateAppBootstrapIndyTaskFactoryImpl.pas │ │ │ │ │ └── CreateProjectDependenciesIndyTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ ├── app.pas.inc │ │ │ │ │ └── readme.md.inc │ │ │ ├── Mhd │ │ │ │ ├── CreateMhdAppFileTaskImpl.pas │ │ │ │ ├── CreateMhdCompilerConfigsTaskImpl.pas │ │ │ │ ├── CreateMhdReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ ├── CreateAppBootstrapMhdTaskFactoryImpl.pas │ │ │ │ │ └── CreateProjectDependenciesMhdTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ ├── app.pas.inc │ │ │ │ │ └── readme.md.inc │ │ │ ├── Scgi │ │ │ │ ├── CreateScgiAppFileTaskImpl.pas │ │ │ │ ├── CreateScgiDockerfileTaskImpl.pas │ │ │ │ ├── CreateScgiReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ │ └── CreateAppBootstrapScgiTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ │ ├── app.pas.inc │ │ │ │ │ ├── dockercompose.inc │ │ │ │ │ ├── fano_dockerfile.inc │ │ │ │ │ ├── httpd_dockerfile.inc │ │ │ │ │ ├── readme.md.inc │ │ │ │ │ └── vhost.example.inc │ │ │ └── Uwsgi │ │ │ │ ├── CreateUwsgiAppFileTaskImpl.pas │ │ │ │ ├── CreateUwsgiDockerfileTaskImpl.pas │ │ │ │ ├── CreateUwsgiReadmeFileTaskImpl.pas │ │ │ │ ├── Factories │ │ │ │ └── CreateAppBootstrapUwsgiTaskFactoryImpl.pas │ │ │ │ └── Includes │ │ │ │ ├── app.pas.inc │ │ │ │ ├── dockercompose.inc │ │ │ │ ├── fano_dockerfile.inc │ │ │ │ ├── httpd_dockerfile.inc │ │ │ │ ├── readme.md.inc │ │ │ │ └── vhost.example.inc │ │ ├── RootCheck │ │ │ └── RootCheckTaskImpl.pas │ │ ├── Session │ │ │ ├── BaseCreateSessionAppConfigsTaskImpl.pas │ │ │ ├── BaseCreateSessionDependenciesTaskImpl.pas │ │ │ ├── CompositeDbTypeTaskImpl.pas │ │ │ ├── CompositeFileTypeTaskImpl.pas │ │ │ ├── CompositeSessionTaskImpl.pas │ │ │ ├── CompositeSessionTypeTaskImpl.pas │ │ │ ├── CreateDbSessionIniAppConfigsTaskImpl.pas │ │ │ ├── CreateDbSessionJsonAppConfigsTaskImpl.pas │ │ │ ├── CreateFileSessionDependenciesTaskImpl.pas │ │ │ ├── CreateSessionAppConfigsTaskImpl.pas │ │ │ ├── CreateSessionDirTaskImpl.pas │ │ │ ├── CreateSessionIniAppConfigsTaskImpl.pas │ │ │ ├── CreateSessionJsonAppConfigsTaskImpl.pas │ │ │ ├── FirebirdDbSessionContentModifierImpl.pas │ │ │ ├── Includes │ │ │ │ ├── config.ini.db.inc │ │ │ │ ├── config.ini.inc │ │ │ │ ├── config.json.db.inc │ │ │ │ ├── config.json.inc │ │ │ │ ├── decl.dispatcher.method.inc │ │ │ │ ├── impl.db.firebird.dispatcher.method.inc │ │ │ │ ├── impl.db.mysql.dispatcher.method.inc │ │ │ │ ├── impl.db.postgresql.dispatcher.method.inc │ │ │ │ ├── impl.db.sqlite.dispatcher.method.inc │ │ │ │ ├── impl.ini.cookie.dispatcher.method.inc │ │ │ │ ├── impl.ini.file.dispatcher.method.inc │ │ │ │ ├── impl.json.cookie.dispatcher.method.inc │ │ │ │ └── impl.json.file.dispatcher.method.inc │ │ │ ├── IniCookieSessionContentModifierImpl.pas │ │ │ ├── IniFileSessionContentModifierImpl.pas │ │ │ ├── JsonCookieSessionContentModifierImpl.pas │ │ │ ├── JsonFileSessionContentModifierImpl.pas │ │ │ ├── MysqlDbSessionContentModifierImpl.pas │ │ │ ├── PostgresqlDbSessionContentModifierImpl.pas │ │ │ ├── SqliteDbSessionContentModifierImpl.pas │ │ │ └── WithDbSessionTaskImpl.pas │ │ ├── StdoutCheck │ │ │ └── StdoutCheckTaskImpl.pas │ │ ├── Text2Inc │ │ │ └── Text2IncTaskImpl.pas │ │ ├── View │ │ │ ├── CreateViewFactoryFileTaskImpl.pas │ │ │ ├── CreateViewFileTaskImpl.pas │ │ │ ├── CreateViewTaskImpl.pas │ │ │ ├── Factories │ │ │ │ └── CreateViewTaskFactoryImpl.pas │ │ │ └── Includes │ │ │ │ ├── view.factory.pas.inc │ │ │ │ └── view.pas.inc │ │ └── Writeln │ │ │ ├── Factories │ │ │ └── WritelnTaskFactoryImpl.pas │ │ │ └── WritelnTaskImpl.pas │ ├── Includes │ │ ├── Controller │ │ │ └── task.registrations.inc │ │ ├── Daemon │ │ │ ├── SystemD │ │ │ │ └── task.registrations.inc │ │ │ └── task.registrations.inc │ │ ├── Deploy │ │ │ ├── Cgi │ │ │ │ └── task.registrations.inc │ │ │ ├── Fcgi │ │ │ │ └── task.registrations.inc │ │ │ ├── FcgiBalancer │ │ │ │ └── task.registrations.inc │ │ │ ├── Fcgid │ │ │ │ └── task.registrations.inc │ │ │ ├── Http │ │ │ │ └── task.registrations.inc │ │ │ ├── HttpBalancer │ │ │ │ └── task.registrations.inc │ │ │ ├── Scgi │ │ │ │ └── task.registrations.inc │ │ │ ├── ScgiBalancer │ │ │ │ └── task.registrations.inc │ │ │ ├── Uwsgi │ │ │ │ └── task.registrations.inc │ │ │ ├── UwsgiBalancer │ │ │ │ └── task.registrations.inc │ │ │ ├── task.registrations.inc │ │ │ └── units.inc │ │ ├── GuidGen │ │ │ └── task.registrations.inc │ │ ├── Info │ │ │ ├── task.registrations.inc │ │ │ └── units.inc │ │ ├── KeyGen │ │ │ └── task.registrations.inc │ │ ├── Middleware │ │ │ └── task.registrations.inc │ │ ├── Minifier │ │ │ ├── Css │ │ │ │ └── task.registrations.inc │ │ │ ├── Js │ │ │ │ └── task.registrations.inc │ │ │ └── task.registrations.inc │ │ ├── Model │ │ │ └── task.registrations.inc │ │ ├── Mvc │ │ │ └── task.registrations.inc │ │ ├── Project │ │ │ ├── Cgi │ │ │ │ └── task.registrations.inc │ │ │ ├── FastCgi │ │ │ │ └── task.registrations.inc │ │ │ ├── Fcgid │ │ │ │ └── task.registrations.inc │ │ │ ├── Fpweb │ │ │ │ └── task.registrations.inc │ │ │ ├── Indy │ │ │ │ └── task.registrations.inc │ │ │ ├── Mhd │ │ │ │ └── task.registrations.inc │ │ │ ├── Scgi │ │ │ │ └── task.registrations.inc │ │ │ ├── Uwsgi │ │ │ │ └── task.registrations.inc │ │ │ ├── task.registrations.inc │ │ │ └── units.inc │ │ ├── Text2Inc │ │ │ └── task.registrations.inc │ │ ├── View │ │ │ └── task.registrations.inc │ │ ├── contracts.inc │ │ ├── task.registrations.inc │ │ └── units.inc │ └── Types │ │ └── TaskItemTypes.pas ├── fanocli.pas └── main.units.inc ├── tools ├── clean.cmd ├── clean.sh ├── config.setup.cmd └── config.setup.sh └── unit.search.cfg /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [zamronypj] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/out/README.md: -------------------------------------------------------------------------------- 1 | # Directory for generated binary executable 2 | -------------------------------------------------------------------------------- /bin/unit/README.md: -------------------------------------------------------------------------------- 1 | # Directory for generated compiled units 2 | -------------------------------------------------------------------------------- /src/Apps/Implementations/FanoAppImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Apps/Implementations/FanoAppImpl.pas -------------------------------------------------------------------------------- /src/Apps/Includes/units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Apps/Includes/units.inc -------------------------------------------------------------------------------- /src/Libs/Dir/Contracts/DirectoryCreatorIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Dir/Contracts/DirectoryCreatorIntf.pas -------------------------------------------------------------------------------- /src/Libs/Dir/Contracts/DirectoryExistsIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Dir/Contracts/DirectoryExistsIntf.pas -------------------------------------------------------------------------------- /src/Libs/Dir/Implementations/DirectoryCreatorImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Dir/Implementations/DirectoryCreatorImpl.pas -------------------------------------------------------------------------------- /src/Libs/Dir/Implementations/DirectoryExistsImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Dir/Implementations/DirectoryExistsImpl.pas -------------------------------------------------------------------------------- /src/Libs/Dir/Implementations/NullDirectoryExistsImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Dir/Implementations/NullDirectoryExistsImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Contracts/ContentModifierIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Contracts/ContentModifierIntf.pas -------------------------------------------------------------------------------- /src/Libs/File/Contracts/FileContentAppenderIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Contracts/FileContentAppenderIntf.pas -------------------------------------------------------------------------------- /src/Libs/File/Contracts/FileContentReaderIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Contracts/FileContentReaderIntf.pas -------------------------------------------------------------------------------- /src/Libs/File/Contracts/FileContentWriterIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Contracts/FileContentWriterIntf.pas -------------------------------------------------------------------------------- /src/Libs/File/Contracts/TextFileCreatorIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Contracts/TextFileCreatorIntf.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/ContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/ContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/CopyrightContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/CopyrightContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/DecoratorContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/DecoratorContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/FileHelperAppendImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/FileHelperAppendImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/FileHelperImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/FileHelperImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/NullContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/NullContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/StdoutTextFileCreatorImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/StdoutTextFileCreatorImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/TextFileCreatorImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/TextFileCreatorImpl.pas -------------------------------------------------------------------------------- /src/Libs/File/Implementations/TextFileCreatorWithModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/File/Implementations/TextFileCreatorWithModifierImpl.pas -------------------------------------------------------------------------------- /src/Libs/Includes/units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Includes/units.inc -------------------------------------------------------------------------------- /src/Libs/KeyGen/Contracts/KeyGeneratorIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/KeyGen/Contracts/KeyGeneratorIntf.pas -------------------------------------------------------------------------------- /src/Libs/KeyGen/Implementations/BasicKeyGeneratorImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/KeyGen/Implementations/BasicKeyGeneratorImpl.pas -------------------------------------------------------------------------------- /src/Libs/List/Contracts/ListIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/List/Contracts/ListIntf.pas -------------------------------------------------------------------------------- /src/Libs/List/Implementations/HashListImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/List/Implementations/HashListImpl.pas -------------------------------------------------------------------------------- /src/Libs/Minifier/Contracts/MinifierIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Minifier/Contracts/MinifierIntf.pas -------------------------------------------------------------------------------- /src/Libs/Minifier/Implementations/CssMinifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Minifier/Implementations/CssMinifierImpl.pas -------------------------------------------------------------------------------- /src/Libs/Minifier/Implementations/JsMinifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Minifier/Implementations/JsMinifierImpl.pas -------------------------------------------------------------------------------- /src/Libs/Utils/cssmin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Utils/cssmin.pas -------------------------------------------------------------------------------- /src/Libs/Utils/strformats.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Libs/Utils/strformats.pas -------------------------------------------------------------------------------- /src/Tasks/Contracts/TaskFactoryIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Contracts/TaskFactoryIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Contracts/TaskInfoIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Contracts/TaskInfoIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Contracts/TaskIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Contracts/TaskIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Contracts/TaskListAwareIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Contracts/TaskListAwareIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Contracts/TaskOptionsIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Contracts/TaskOptionsIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Base/AddToUnitSearchTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Base/AddToUnitSearchTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Base/AddToUsesClauseTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Base/AddToUsesClauseTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Base/BaseCreateFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Base/BaseCreateFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Base/CreateDependencyRegistrationTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Base/CreateDependencyRegistrationTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Base/CreateDependencyTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Base/CreateDependencyTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Base/CreateFileConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Base/CreateFileConsts.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/ChangeDir/ChangeDirTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/ChangeDir/ChangeDirTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Composite/CompositeTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Composite/CompositeTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Composite/ConditionalCompositeTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Composite/ConditionalCompositeTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Composite/GroupTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Composite/GroupTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Composite/NamedCompositeTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Composite/NamedCompositeTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Config/CompositeConfigTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Config/CompositeConfigTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Config/ForceConfigDecoratorTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Config/ForceConfigDecoratorTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/CreateControllerFactoryFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/CreateControllerFactoryFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/CreateControllerFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/CreateControllerFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/CreateControllerTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/CreateControllerTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/CreateMultiRouteTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/CreateMultiRouteTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/CreateRouteTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/CreateRouteTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/Factories/CreateControllerTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/Factories/CreateControllerTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/Includes/rest.controller.factory.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/Includes/rest.controller.factory.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/Includes/rest.controller.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/Includes/rest.controller.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/Includes/routes.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/Includes/routes.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/WithMultiRouteTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/WithMultiRouteTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Controller/WithNoRouteTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Controller/WithNoRouteTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Csrf/CreateCsrfMiddlewareDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Csrf/CreateCsrfMiddlewareDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Csrf/ForceConfigSessionDecoratorTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Csrf/ForceConfigSessionDecoratorTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Csrf/Includes/csrf.dependencies.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Csrf/Includes/csrf.dependencies.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Csrf/WithCsrfTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Csrf/WithCsrfTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Daemon/SystemD/Factories/SystemDDaemonTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Daemon/SystemD/Factories/SystemDDaemonTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Daemon/SystemD/Includes/daemon.service.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Daemon/SystemD/Includes/daemon.service.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Daemon/SystemD/SystemDDaemonTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Daemon/SystemD/SystemDDaemonTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Decorator/DecoratorTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Decorator/DecoratorTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Decorator/WithOptionsDecoratorTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Decorator/WithOptionsDecoratorTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Balancer/Factories/XDeployBalancerTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Balancer/Factories/XDeployBalancerTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Cgi/Factories/XDeployCgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Cgi/Factories/XDeployCgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/AddDomainToEtcHostTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/AddDomainToEtcHostTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/DeployTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/DeployTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/Factories/AbstractDeployTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/Factories/AbstractDeployTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheDebianVHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheDebianVHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheEnableVhostTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheEnableVhostTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheFedoraVHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheFedoraVHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheFreeBsdVHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheFreeBsdVHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheReloadWebServerTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheReloadWebServerTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostBalancerTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostBalancerTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostCgiTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostCgiTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostFcgiTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostFcgiTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostFcgidTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostFcgidTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostHttpTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostHttpTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostScgiTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostScgiTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostUwsgiTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheVHostUwsgiTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheWindowsVHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/ApacheWindowsVHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/balancer.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/balancer.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/cgi.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/cgi.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/fcgi.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/fcgi.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/fcgid.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/fcgid.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/http.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/http.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/scgi.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/scgi.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/uwsgi.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Apache/Includes/uwsgi.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/BaseWebServerVirtualHostTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/BaseWebServerVirtualHostTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Contracts/VirtualHostIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Contracts/VirtualHostIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Contracts/VirtualHostTemplateIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Contracts/VirtualHostTemplateIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Contracts/VirtualHostWriterIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Contracts/VirtualHostWriterIntf.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/BaseNginxVirtualHostTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/BaseNginxVirtualHostTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/FcgidCheck/FcgidCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/FcgidCheck/FcgidCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/balancer.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/balancer.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/fcgi.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/fcgi.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/http.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/http.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/scgi.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/scgi.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/uwsgi.vhost.conf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/Includes/uwsgi.vhost.conf.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxFreeBsdVHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxFreeBsdVHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxLinuxVHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxLinuxVHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxReloadWebServerTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxReloadWebServerTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostBalancerTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostBalancerTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostFcgiTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostFcgiTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostHttpTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostHttpTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostScgiTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostScgiTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostUwsgiTplImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxVHostUwsgiTplImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxWindowsVHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/Nginx/NginxWindowsVHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/ReloadWebServerTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/ReloadWebServerTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/VirtualHostImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/VirtualHostImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/VirtualHostWriterImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/VirtualHostWriterImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServer/WebServerVirtualHostTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServer/WebServerVirtualHostTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WebServerTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WebServerTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Core/WithSkipEtcHostTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Core/WithSkipEtcHostTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Fcgi/Factories/XDeployFcgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Fcgi/Factories/XDeployFcgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/FcgiBalancer/Factories/XDeployFcgiBalancerTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/FcgiBalancer/Factories/XDeployFcgiBalancerTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Fcgid/Factories/XDeployFcgidTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Fcgid/Factories/XDeployFcgidTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Http/Factories/XDeployHttpTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Http/Factories/XDeployHttpTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/HttpBalancer/Factories/XDeployHttpBalancerTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/HttpBalancer/Factories/XDeployHttpBalancerTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Scgi/Factories/XDeployScgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Scgi/Factories/XDeployScgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/ScgiBalancer/Factories/XDeployScgiBalancerTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/ScgiBalancer/Factories/XDeployScgiBalancerTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/Uwsgi/Factories/XDeployUwsgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/Uwsgi/Factories/XDeployUwsgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Deploy/UwsgiBalancer/Factories/XDeployUwsgiBalancerTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Deploy/UwsgiBalancer/Factories/XDeployUwsgiBalancerTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Duplicate/DuplicateCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Duplicate/DuplicateCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Duplicate/DuplicateCtrlCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Duplicate/DuplicateCtrlCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Duplicate/DuplicateMiddlewareCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Duplicate/DuplicateMiddlewareCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Duplicate/DuplicateModelCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Duplicate/DuplicateModelCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Duplicate/DuplicateViewCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Duplicate/DuplicateViewCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/EmptyDirCheck/EmptyDirCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/EmptyDirCheck/EmptyDirCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/GuidGen/GuidGenTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/GuidGen/GuidGenTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/InFanoProjectDirCheck/InFanoProjectDirCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/InFanoProjectDirCheck/InFanoProjectDirCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Info/InfoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Info/InfoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Info/SingleInfoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Info/SingleInfoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Info/WithSingleInfoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Info/WithSingleInfoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/KeyGen/Factories/KeyGenTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/KeyGen/Factories/KeyGenTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/KeyGen/KeyGenTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/KeyGen/KeyGenTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/AbstractCreateLoggerDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/AbstractCreateLoggerDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/CompositeLoggerDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/CompositeLoggerDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/CreateDbLoggerDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/CreateDbLoggerDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/CreateFileLoggerDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/CreateFileLoggerDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/CreateSyslogLoggerDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/CreateSyslogLoggerDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/Includes/dblogger.dependencies.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/Includes/dblogger.dependencies.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/Includes/filelogger.dependencies.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/Includes/filelogger.dependencies.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/Includes/sysloglogger.dependencies.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/Includes/sysloglogger.dependencies.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Logger/WithLoggerTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Logger/WithLoggerTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Create/CreateMiddlewareFactoryFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Create/CreateMiddlewareFactoryFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Create/CreateMiddlewareFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Create/CreateMiddlewareFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Create/CreateMiddlewareTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Create/CreateMiddlewareTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Create/Factories/CreateMiddlewareTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Create/Factories/CreateMiddlewareTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Create/Includes/middleware.factory.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Create/Includes/middleware.factory.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Create/Includes/middleware.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Create/Includes/middleware.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Create/MiddlewareAddToUnitSearchTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Create/MiddlewareAddToUnitSearchTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Support/CreateMiddlewareDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Support/CreateMiddlewareDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Support/CreateNoMiddlewareDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Support/CreateNoMiddlewareDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Support/Includes/buildDispatcher.decl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Support/Includes/buildDispatcher.decl.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Middleware/Support/Includes/buildDispatcher.impl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Middleware/Support/Includes/buildDispatcher.impl.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Minifier/DirFileMinifierTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Minifier/DirFileMinifierTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Minifier/Factories/CssMinifierTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Minifier/Factories/CssMinifierTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Minifier/Factories/JsMinifierTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Minifier/Factories/JsMinifierTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Minifier/MinifyDirTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Minifier/MinifyDirTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Minifier/MinifyFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Minifier/MinifyFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Model/CreateModelFactoryFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Model/CreateModelFactoryFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Model/CreateModelFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Model/CreateModelFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Model/CreateModelTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Model/CreateModelTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Model/Factories/CreateModelTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Model/Factories/CreateModelTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Model/Includes/model.factory.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Model/Includes/model.factory.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Model/Includes/model.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Model/Includes/model.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Mvc/Factories/CreateMvcTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Mvc/Factories/CreateMvcTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/NotInFanoProjectDirCheck/NotInFanoProjectDirCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/NotInFanoProjectDirCheck/NotInFanoProjectDirCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Null/Factories/NullTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Null/Factories/NullTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Null/NullTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Null/NullTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/CreateCgiAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/CreateCgiAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/CreateCgiDockerfileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/CreateCgiDockerfileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/CreateCgiReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/CreateCgiReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/Factories/CreateAppBootstrapCgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/Factories/CreateAppBootstrapCgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/Includes/dockercompose.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/Includes/dockercompose.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/Includes/dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/Includes/dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Cgi/Includes/vhost.example.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Cgi/Includes/vhost.example.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/AddFanoRepoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/AddFanoRepoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/BaseGitRepoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/BaseGitRepoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/BaseProjectTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/BaseProjectTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CheckoutFanoRepoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CheckoutFanoRepoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CommitGitRepoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CommitGitRepoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateAdditionalFilesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateAdditionalFilesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateAppConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateAppConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateBasicFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateBasicFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateBootstrapFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateBootstrapFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateCompilerConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateCompilerConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateConfigMethodTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateConfigMethodTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateCurlCompilerConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateCurlCompilerConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateDepFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateDepFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateDirTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateDirTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateDispatcherMethodTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateDispatcherMethodTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateProjectTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateProjectTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateRouteFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateRouteFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/CreateShellScriptsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/CreateShellScriptsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/DecoratorCreateCompilerConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/DecoratorCreateCompilerConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Factories/CreateProjectTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Factories/CreateProjectTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/appconfig.dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/appconfig.dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/bootstrap.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/bootstrap.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/build.cfg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/build.cfg.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/build.cmd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/build.cmd.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/build.dev.cfg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/build.dev.cfg.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/build.prod.cfg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/build.prod.cfg.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/build.sh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/build.sh.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/clean.cmd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/clean.cmd.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/clean.sh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/clean.sh.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/config.setup.cmd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/config.setup.cmd.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/config.setup.sh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/config.setup.sh.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/controllers.dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/controllers.dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/default.appconfig.dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/default.appconfig.dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/defines.cfg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/defines.cfg.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/env.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/env.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/gitignore.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/gitignore.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/htaccess.example.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/htaccess.example.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/main.dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/main.dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/methods/buildAppConfig.decl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/methods/buildAppConfig.decl.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/methods/buildAppConfig.impl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/methods/buildAppConfig.impl.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/middlewares.dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/middlewares.dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/models.dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/models.dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/routes.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/routes.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/simulate.run.cmd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/simulate.run.cmd.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/simulate.run.sh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/simulate.run.sh.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/Includes/views.dependencies.inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/Includes/views.dependencies.inc.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/InitGitRepoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/InitGitRepoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/RegisterConfigDependencyTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/RegisterConfigDependencyTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/StageRepoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/StageRepoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/WithGitInitialCommitTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/WithGitInitialCommitTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Core/WithGitRepoTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Core/WithGitRepoTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Daemon/CreateDaemonBootstrapFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Daemon/CreateDaemonBootstrapFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Daemon/Factories/CreateDaemonProjectTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Daemon/Factories/CreateDaemonProjectTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Daemon/Includes/bootstrap.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Daemon/Includes/bootstrap.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/CreateFcgiAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/CreateFcgiAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/CreateFcgiDockerfileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/CreateFcgiDockerfileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/CreateFcgiReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/CreateFcgiReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/Factories/CreateAppBootstrapFcgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/Factories/CreateAppBootstrapFcgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/Includes/dockercompose.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/Includes/dockercompose.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/Includes/fano_dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/Includes/fano_dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/Includes/httpd_dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/Includes/httpd_dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/FastCgi/Includes/vhost.example.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/FastCgi/Includes/vhost.example.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/CreateFcgidAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/CreateFcgidAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/CreateFcgidDockerfileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/CreateFcgidDockerfileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/CreateFcgidReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/CreateFcgidReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/Factories/CreateAppBootstrapFcgidTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/Factories/CreateAppBootstrapFcgidTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/Includes/dockercompose.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/Includes/dockercompose.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/Includes/dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/Includes/dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fcgid/Includes/vhost.example.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fcgid/Includes/vhost.example.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fpweb/CreateFpwebAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fpweb/CreateFpwebAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fpweb/CreateFpwebReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fpweb/CreateFpwebReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fpweb/Factories/CreateAppBootstrapFpwebTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fpweb/Factories/CreateAppBootstrapFpwebTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fpweb/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fpweb/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Fpweb/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Fpweb/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Helper/Factories/CreateAppBootstrapTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Helper/Factories/CreateAppBootstrapTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Helper/Factories/CreateProjectDependenciesTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Helper/Factories/CreateProjectDependenciesTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Helper/Factories/WithSessionOrMiddlewareTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Helper/Factories/WithSessionOrMiddlewareTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Indy/CreateIndyAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Indy/CreateIndyAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Indy/CreateIndyCompilerConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Indy/CreateIndyCompilerConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Indy/CreateIndyReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Indy/CreateIndyReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Indy/Factories/CreateAppBootstrapIndyTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Indy/Factories/CreateAppBootstrapIndyTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Indy/Factories/CreateProjectDependenciesIndyTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Indy/Factories/CreateProjectDependenciesIndyTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Indy/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Indy/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Indy/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Indy/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Mhd/CreateMhdAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Mhd/CreateMhdAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Mhd/CreateMhdCompilerConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Mhd/CreateMhdCompilerConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Mhd/CreateMhdReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Mhd/CreateMhdReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Mhd/Factories/CreateAppBootstrapMhdTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Mhd/Factories/CreateAppBootstrapMhdTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Mhd/Factories/CreateProjectDependenciesMhdTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Mhd/Factories/CreateProjectDependenciesMhdTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Mhd/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Mhd/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Mhd/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Mhd/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/CreateScgiAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/CreateScgiAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/CreateScgiDockerfileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/CreateScgiDockerfileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/CreateScgiReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/CreateScgiReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/Factories/CreateAppBootstrapScgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/Factories/CreateAppBootstrapScgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/Includes/dockercompose.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/Includes/dockercompose.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/Includes/fano_dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/Includes/fano_dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/Includes/httpd_dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/Includes/httpd_dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Scgi/Includes/vhost.example.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Scgi/Includes/vhost.example.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/CreateUwsgiAppFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/CreateUwsgiAppFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/CreateUwsgiDockerfileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/CreateUwsgiDockerfileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/CreateUwsgiReadmeFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/CreateUwsgiReadmeFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/Factories/CreateAppBootstrapUwsgiTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/Factories/CreateAppBootstrapUwsgiTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/Includes/app.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/Includes/app.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/Includes/dockercompose.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/Includes/dockercompose.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/Includes/fano_dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/Includes/fano_dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/Includes/httpd_dockerfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/Includes/httpd_dockerfile.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/Includes/readme.md.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/Includes/readme.md.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Project/Uwsgi/Includes/vhost.example.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Project/Uwsgi/Includes/vhost.example.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/RootCheck/RootCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/RootCheck/RootCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/BaseCreateSessionAppConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/BaseCreateSessionAppConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/BaseCreateSessionDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/BaseCreateSessionDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CompositeDbTypeTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CompositeDbTypeTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CompositeFileTypeTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CompositeFileTypeTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CompositeSessionTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CompositeSessionTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CompositeSessionTypeTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CompositeSessionTypeTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CreateDbSessionIniAppConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CreateDbSessionIniAppConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CreateDbSessionJsonAppConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CreateDbSessionJsonAppConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CreateFileSessionDependenciesTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CreateFileSessionDependenciesTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CreateSessionAppConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CreateSessionAppConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CreateSessionDirTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CreateSessionDirTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CreateSessionIniAppConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CreateSessionIniAppConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/CreateSessionJsonAppConfigsTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/CreateSessionJsonAppConfigsTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/FirebirdDbSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/FirebirdDbSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/config.ini.db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/config.ini.db.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/config.ini.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/config.ini.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/config.json.db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/config.json.db.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/config.json.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/config.json.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/decl.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/decl.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.db.firebird.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.db.firebird.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.db.mysql.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.db.mysql.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.db.postgresql.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.db.postgresql.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.db.sqlite.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.db.sqlite.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.ini.cookie.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.ini.cookie.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.ini.file.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.ini.file.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.json.cookie.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.json.cookie.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/Includes/impl.json.file.dispatcher.method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/Includes/impl.json.file.dispatcher.method.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/IniCookieSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/IniCookieSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/IniFileSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/IniFileSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/JsonCookieSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/JsonCookieSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/JsonFileSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/JsonFileSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/MysqlDbSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/MysqlDbSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/PostgresqlDbSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/PostgresqlDbSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/SqliteDbSessionContentModifierImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/SqliteDbSessionContentModifierImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Session/WithDbSessionTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Session/WithDbSessionTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/StdoutCheck/StdoutCheckTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/StdoutCheck/StdoutCheckTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Text2Inc/Text2IncTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Text2Inc/Text2IncTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/View/CreateViewFactoryFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/View/CreateViewFactoryFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/View/CreateViewFileTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/View/CreateViewFileTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/View/CreateViewTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/View/CreateViewTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/View/Factories/CreateViewTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/View/Factories/CreateViewTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/View/Includes/view.factory.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/View/Includes/view.factory.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/View/Includes/view.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/View/Includes/view.pas.inc -------------------------------------------------------------------------------- /src/Tasks/Implementations/Writeln/Factories/WritelnTaskFactoryImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Writeln/Factories/WritelnTaskFactoryImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Implementations/Writeln/WritelnTaskImpl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Implementations/Writeln/WritelnTaskImpl.pas -------------------------------------------------------------------------------- /src/Tasks/Includes/Controller/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Controller/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Daemon/SystemD/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Daemon/SystemD/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Daemon/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Daemon/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/Cgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/Cgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/Fcgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/Fcgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/FcgiBalancer/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/FcgiBalancer/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/Fcgid/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/Fcgid/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/Http/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/Http/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/HttpBalancer/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/HttpBalancer/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/Scgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/Scgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/ScgiBalancer/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/ScgiBalancer/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/Uwsgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/Uwsgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/UwsgiBalancer/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/UwsgiBalancer/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Deploy/units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Deploy/units.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/GuidGen/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/GuidGen/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Info/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Info/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Info/units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Info/units.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/KeyGen/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/KeyGen/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Middleware/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Middleware/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Minifier/Css/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Minifier/Css/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Minifier/Js/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Minifier/Js/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Minifier/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Minifier/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Model/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Model/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Mvc/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Mvc/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/Cgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/Cgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/FastCgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/FastCgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/Fcgid/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/Fcgid/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/Fpweb/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/Fpweb/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/Indy/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/Indy/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/Mhd/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/Mhd/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/Scgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/Scgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/Uwsgi/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/Uwsgi/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Project/units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Project/units.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/Text2Inc/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/Text2Inc/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/View/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/View/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/contracts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/contracts.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/task.registrations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/task.registrations.inc -------------------------------------------------------------------------------- /src/Tasks/Includes/units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Includes/units.inc -------------------------------------------------------------------------------- /src/Tasks/Types/TaskItemTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/Tasks/Types/TaskItemTypes.pas -------------------------------------------------------------------------------- /src/fanocli.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/fanocli.pas -------------------------------------------------------------------------------- /src/main.units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/src/main.units.inc -------------------------------------------------------------------------------- /tools/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/tools/clean.cmd -------------------------------------------------------------------------------- /tools/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/tools/clean.sh -------------------------------------------------------------------------------- /tools/config.setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/tools/config.setup.cmd -------------------------------------------------------------------------------- /tools/config.setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/tools/config.setup.sh -------------------------------------------------------------------------------- /unit.search.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanoframework/fano-cli/HEAD/unit.search.cfg --------------------------------------------------------------------------------