Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 1.11 KB

File metadata and controls

20 lines (19 loc) · 1.11 KB

Deployment Instructions:

  1. Create your own Jenkins Server and install the following on the server:
    • Install "python3.10-venv", "python-pip", "unzip"
  2. Create a multibranch pipeline and run the build for the application
    • You'll see an option called branch sources. Choose GitHub and enter your GitHub link and credentials.
  3. Follow the install AWS EB CLI instructions
  4. Then, add this stage to your Jenkins file and rerun your build: stage ('Deploy') { steps { sh '/var/lib/jenkins/.local/bin/eb deploy' } }
  5. IF your application redeployed successfully, what did you notice?
  6. Configure a Webhook
  7. BONUS: Once you've configured your webhook, change the background or some text in the application. HINT Look into the HTML or CSS file and ask chatGPT for help
  8. Did the application redeploy?