Prod build process

This commit is contained in:
Jason Jordan
2026-05-06 13:28:16 -04:00
parent 1d9025276d
commit e0101be567
223 changed files with 1861 additions and 7105 deletions
+10 -11
View File
@@ -2,18 +2,17 @@
<configuration>
<system.webServer>
<handlers>
<!-- This handler is a reverse proxy that forwards all requests to the application process -->
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" requireAccess="Script" />
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform
stdoutLogEnabled="true"
stdoutLogFile=".\logs\stdout.log"
startupTimeLimit="200"
processPath="C:\Ruby32-x64\bin\ruby.exe"
arguments="&quot;C:\Ruby34-x64\lib\ruby\gems\3.4.0\gems\puma-6.6.1&quot; -p 3002 -w 0"
>
<!-- Environment variable to ensure the application listens on the port provided by IIS -->
<environmentVariables />
<httpPlatform processPath="cmd.exe"
arguments="/c start_rails.bat"
stdoutLogEnabled="true"
stdoutLogFile=".\log\stdout.log"
startupTimeLimit="200">
<environmentVariables>
<environmentVariable name="RAILS_ENV" value="production" />
<environmentVariable name="RAILS_SERVE_STATIC_FILES" value="true" />
</environmentVariables>
</httpPlatform>
</system.webServer>
</configuration>