Skip to content

Commit

Permalink
Update index.markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
JQCVSC authored Jul 14, 2024
1 parent 8743cec commit 65e4200
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,29 @@ Improve the user interface
Add password generation functionality
Implement password history checking

Step 4: Deploy to the Cloud
### Step 4: Deploy to the Cloud

Choose either GCP or AWS for deployment.
GCP Deployment:

## GCP Deployment:
Compute Engine VM:
bashCopygcloud compute ssh your-vm-instance
gcloud compute ssh your-vm-instance
git clone https://github.com/JQCVSC/Secure-Pass-Sentinel
cd Secure-Pass-Sentinel
pip install -r requirements.txt
python main.py
Cloud Run: Use the provided cloudbuild.yaml file to deploy to Cloud Run.
AWS Deployment:

## AWS Deployment:
EC2 Instance:
bashCopyssh ec2-user@your-ec2-instance
ssh ec2-user@your-ec2-instance
git clone https://github.com/JQCVSC/Secure-Pass-Sentinel
cd Secure-Pass-Sentinel
pip install -r requirements.txt
python main.py
Lambda Function: Package the app as a Lambda function and set up an API Gateway.
Step 5: Set Up CI/CD

### Step 5: Set Up CI/CD
Integrate GitHub Actions for automatic deployment. Refer to GitHub Actions documentation for setup.
Project Structure

Expand Down

0 comments on commit 65e4200

Please sign in to comment.