├── .gitignore ├── README.md └── Server ├── Config.Secrets.pas ├── Config.Server.pas ├── Modules.Api.dfm ├── Modules.Api.pas ├── Modules.Auth.dfm ├── Modules.Auth.pas ├── Modules.Config.dfm ├── Modules.Config.pas ├── Services.ProblemDetail.pas ├── Services.Sample.Impl.pas ├── Utils.RSAKeyStorage.pas ├── WinServer.dpr ├── WinServer.dproj ├── config └── local │ ├── WinServer.json │ ├── keys │ ├── 404964ad925b462c891b732813162705.key │ └── 404964ad925b462c891b732813162705.pub │ └── secrets.json └── shared └── Services.Sample.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TMS BIZ Boilerplate projects 2 | 3 | 4 | -------------------------------------------------------------------------------- /Server/Config.Secrets.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Config.Secrets.pas -------------------------------------------------------------------------------- /Server/Config.Server.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Config.Server.pas -------------------------------------------------------------------------------- /Server/Modules.Api.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Modules.Api.dfm -------------------------------------------------------------------------------- /Server/Modules.Api.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Modules.Api.pas -------------------------------------------------------------------------------- /Server/Modules.Auth.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Modules.Auth.dfm -------------------------------------------------------------------------------- /Server/Modules.Auth.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Modules.Auth.pas -------------------------------------------------------------------------------- /Server/Modules.Config.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Modules.Config.dfm -------------------------------------------------------------------------------- /Server/Modules.Config.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Modules.Config.pas -------------------------------------------------------------------------------- /Server/Services.ProblemDetail.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Services.ProblemDetail.pas -------------------------------------------------------------------------------- /Server/Services.Sample.Impl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Services.Sample.Impl.pas -------------------------------------------------------------------------------- /Server/Utils.RSAKeyStorage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/Utils.RSAKeyStorage.pas -------------------------------------------------------------------------------- /Server/WinServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/WinServer.dpr -------------------------------------------------------------------------------- /Server/WinServer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/WinServer.dproj -------------------------------------------------------------------------------- /Server/config/local/WinServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/config/local/WinServer.json -------------------------------------------------------------------------------- /Server/config/local/keys/404964ad925b462c891b732813162705.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/config/local/keys/404964ad925b462c891b732813162705.key -------------------------------------------------------------------------------- /Server/config/local/keys/404964ad925b462c891b732813162705.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/config/local/keys/404964ad925b462c891b732813162705.pub -------------------------------------------------------------------------------- /Server/config/local/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/config/local/secrets.json -------------------------------------------------------------------------------- /Server/shared/Services.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmssoftware/BIZ-Boilerplate/HEAD/Server/shared/Services.Sample.pas --------------------------------------------------------------------------------