{
  "_class" : "org.jenkinsci.plugins.workflow.job.WorkflowRun",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.triggers.SCMTrigger$SCMTriggerCause",
          "shortDescription" : "Started by an SCM change"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "jenkins.metrics.impl.TimeInQueueAction",
      "blockedDurationMillis" : 0,
      "blockedTimeMillis" : 0,
      "buildableDurationMillis" : 0,
      "buildableTimeMillis" : 22,
      "buildingDurationMillis" : 677862,
      "executingTimeMillis" : 672691,
      "executorUtilization" : 0.99,
      "subTaskCount" : 1,
      "waitingDurationMillis" : 6678,
      "waitingTimeMillis" : 6679
    },
    {
      "_class" : "org.jenkinsci.plugins.workflow.libs.LibrariesAction"
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "refs/remotes/origin/main" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 13,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
            "branch" : [
              {
                "SHA1" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
                "name" : "refs/remotes/origin/main"
              }
            ]
          },
          "revision" : {
            "SHA1" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
            "branch" : [
              {
                "SHA1" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
                "name" : "refs/remotes/origin/main"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
        "branch" : [
          {
            "SHA1" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
            "name" : "refs/remotes/origin/main"
          }
        ]
      },
      "remoteUrls" : [
        "https://github.com/DrPersico/juntete.git"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    },
    {
      "_class" : "org.jenkinsci.plugins.pipeline.modeldefinition.actions.RestartDeclarativePipelineAction"
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.workflow.job.views.FlowGraphAction"
    },
    {
      
    },
    {
      
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#13",
  "duration" : 677862,
  "estimatedDuration" : 889664,
  "executor" : None,
  "fullDisplayName" : "juntete-deploy #13",
  "id" : "13",
  "keepLog" : False,
  "number" : 13,
  "queueId" : 16,
  "result" : "SUCCESS",
  "timestamp" : 1763585108763,
  "url" : "https://geeplo.com/jenkins/view/all/job/juntete-deploy/13/",
  "changeSets" : [
    {
      "_class" : "hudson.plugins.git.GitChangeSetList",
      "items" : [
        {
          "_class" : "hudson.plugins.git.GitChangeSet",
          "affectedPaths" : [
            "frontend/next.config.js",
            "docker-compose.production.yml"
          ],
          "commitId" : "7577993e69777ca4bbd87bee4a447e565780fda8",
          "timestamp" : 1762984695000,
          "author" : {
            "absoluteUrl" : "https://geeplo.com/jenkins/user/38354104+drpersico",
            "fullName" : "38354104+DrPersico"
          },
          "authorEmail" : "38354104+DrPersico@users.noreply.github.com",
          "comment" : "Add nginx reverse proxy for /juntete path\u000a\u000a- Update nginx config to route /juntete to frontend container\u000a- Add base path configuration to Next.js for production\u000a- Remove direct port 3002 exposure from docker-compose.production.yml\u000a- Set NODE_ENV=production for proper base path handling\u000a- Add upstream block for nginx load balancing\u000a\u000a\ud83e\udd16 Generated with [Claude Code](https://claude.com/claude-code)\u000a\u000aCo-Authored-By: Claude <noreply@anthropic.com>\u000a",
          "date" : "2025-11-12 22:58:15 +0100",
          "id" : "7577993e69777ca4bbd87bee4a447e565780fda8",
          "msg" : "Add nginx reverse proxy for /juntete path",
          "paths" : [
            {
              "editType" : "edit",
              "file" : "docker-compose.production.yml"
            },
            {
              "editType" : "edit",
              "file" : "frontend/next.config.js"
            }
          ]
        },
        {
          "_class" : "hudson.plugins.git.GitChangeSet",
          "affectedPaths" : [
            "postgresql/conf/postgresql.conf",
            "postgresql/init/01-init-database.sh",
            "postgresql/scripts/backup.sh",
            "Jenkinsfile.postgres",
            "setup.sh",
            "postgresql/scripts/deploy.sh",
            "docker-compose.postgres.prod.yml",
            "postgresql/scripts/backup_check.sh",
            "docker-compose.postgres.yml",
            "postgresql/conf/pg_hba.conf"
          ],
          "commitId" : "221d8464bdb8d727f6cbd35cbf81ea60f08cf5f3",
          "timestamp" : 1763061752000,
          "author" : {
            "absoluteUrl" : "https://geeplo.com/jenkins/user/38354104+drpersico",
            "fullName" : "38354104+DrPersico"
          },
          "authorEmail" : "38354104+DrPersico@users.noreply.github.com",
          "comment" : "Update to PostgreSQL 18 - Latest stable version\u000a\u000a- Upgrade from PostgreSQL 15 to PostgreSQL 18\u000a- Updated all Docker images to postgres:18-alpine\u000a- Updated Jenkinsfile to use PostgreSQL 18\u000a- Updated documentation to reflect latest version\u000a- Validated all configurations work correctly\u000a\u000aPostgreSQL 18 includes:\u000a- Performance improvements for ARM64 architecture\u000a- Enhanced parallel query capabilities\u000a- Improved storage efficiency\u000a- Better monitoring and observability features\u000a\u000a\ud83e\udd16 Generated with [Claude Code](https://claude.com/claude-code)\u000a\u000aCo-Authored-By: Claude <noreply@anthropic.com>\u000a",
          "date" : "2025-11-13 20:22:32 +0100",
          "id" : "221d8464bdb8d727f6cbd35cbf81ea60f08cf5f3",
          "msg" : "Update to PostgreSQL 18 - Latest stable version",
          "paths" : [
            {
              "editType" : "add",
              "file" : "setup.sh"
            },
            {
              "editType" : "add",
              "file" : "postgresql/scripts/deploy.sh"
            },
            {
              "editType" : "add",
              "file" : "postgresql/scripts/backup_check.sh"
            },
            {
              "editType" : "add",
              "file" : "docker-compose.postgres.prod.yml"
            },
            {
              "editType" : "add",
              "file" : "postgresql/conf/pg_hba.conf"
            },
            {
              "editType" : "add",
              "file" : "postgresql/conf/postgresql.conf"
            },
            {
              "editType" : "add",
              "file" : "postgresql/init/01-init-database.sh"
            },
            {
              "editType" : "add",
              "file" : "docker-compose.postgres.yml"
            },
            {
              "editType" : "add",
              "file" : "postgresql/scripts/backup.sh"
            },
            {
              "editType" : "add",
              "file" : "Jenkinsfile.postgres"
            }
          ]
        },
        {
          "_class" : "hudson.plugins.git.GitChangeSet",
          "affectedPaths" : [
            "docker-compose.postgres.prod.yml",
            "docker-compose.postgres.yml",
            "Jenkinsfile.postgres"
          ],
          "commitId" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
          "timestamp" : 1763069791000,
          "author" : {
            "absoluteUrl" : "https://geeplo.com/jenkins/user/38354104+drpersico",
            "fullName" : "38354104+DrPersico"
          },
          "authorEmail" : "38354104+DrPersico@users.noreply.github.com",
          "comment" : "\ud83d\udd12 Fix security vulnerability - Remove hardcoded passwords\u000a\u000aCRITICAL SECURITY FIX:\u000a- Remove hardcoded password from docker-compose.yml\u000a- Use environment variables with .env file configuration\u000a- Add .env.example as template for secure setup\u000a- Update Jenkinsfile with security validation checks\u000a- Add comprehensive security documentation\u000a- Update README with security best practices\u000a- Ensure .env is properly gitignored\u000a\u000aSecurity improvements:\u000a- Password validation in Jenkins pipeline\u000a- Environment variable fallbacks with secure defaults\u000a- File permission recommendations\u000a- Container security features maintained\u000a- Production deployment security checklist\u000a\u000aNo more passwords in plain text! Use .env file for configuration.\u000a\u000a\ud83e\udd16 Generated with [Claude Code](https://claude.com/claude-code)\u000a\u000aCo-Authored-By: Claude <noreply@anthropic.com>\u000a",
          "date" : "2025-11-13 22:36:31 +0100",
          "id" : "7389a6cb95fff3503749e53198f6fba00d4550ec",
          "msg" : "\ud83d\udd12 Fix security vulnerability - Remove hardcoded passwords",
          "paths" : [
            {
              "editType" : "edit",
              "file" : "Jenkinsfile.postgres"
            },
            {
              "editType" : "delete",
              "file" : "docker-compose.postgres.prod.yml"
            },
            {
              "editType" : "delete",
              "file" : "docker-compose.postgres.yml"
            }
          ]
        }
      ],
      "kind" : "git"
    }
  ],
  "culprits" : [
    {
      "absoluteUrl" : "https://geeplo.com/jenkins/user/38354104+drpersico",
      "fullName" : "38354104+DrPersico"
    }
  ],
  "inProgress" : False,
  "nextBuild" : {
    "number" : 14,
    "url" : "https://geeplo.com/jenkins/view/all/job/juntete-deploy/14/"
  },
  "previousBuild" : {
    "number" : 12,
    "url" : "https://geeplo.com/jenkins/view/all/job/juntete-deploy/12/"
  }
}