diff --git a/full-stack-project-implementation-guide.html b/full-stack-project-implementation-guide.html index 08db719..13ebe0f 100644 --- a/full-stack-project-implementation-guide.html +++ b/full-stack-project-implementation-guide.html @@ -661,6 +661,89 @@
Criterion: 6.2 Document Deployment Process
+
Criterion: 6.3 Ensure Security in Deployment
+ + + + + + + + + + + + + + + +
CriterionDescriptionExpected Performance
Ensure Security in DeploymentSecure the deployed application by: Not including passwords or sensitive information in the git repository, using environment variables or .gitignore for secret keys, and ensuring DEBUG mode is turned off. +
    +
  • No inclusion of passwords or sensitive information in the git repository.
  • +
  • Use of environment variables or .gitignore to manage secret keys and configurations.
  • +
  • Ensuring DEBUG mode is turned off in the deployed application.
  • +
+
+ + + + + +
+

+ +

+
+
+
Criterion: 6.1 Deploy Application to Cloud Platform
+ + + + + + + + + + + + + + + +
CriterionDescriptionExpected Performance
6.1 Deploy Application to Cloud PlatformSuccessfully deploy the final version of the Full-Stack application to a cloud-based hosting platform and verify that it matches the development version +
    +
  • Successful deployment of the application to a cloud-based platform.
  • +
  • Verification that the deployed version matches the development version in functionality.
  • +
  • Proper configuration of the hosting environment to support the application.
  • +
+
+ +
Criterion: 6.2 Document Deployment Process
+ + + + + + + + + + + + + + + +
CriterionDescriptionExpected Performance
Document Deployment ProcessClearly document the deployment process in a README file. +
    +
  • Clear and detailed documentation of the deployment process in the README file.
  • +
  • Step-by-step instructions for setting up and deploying the application.
  • +
+
+
Criterion: 6.3 Ensure Security in Deployment