This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://effective-disco-g4qwrwvvvvpvc9j7q.github.dev" target="_blank"> | |
Microsoft URL for Sandra | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://effective-disco-g4qwrwvvvvpvc9j7q.github.dev" target="_blank"> | |
Visual Studios for Sandra | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://effective-disco-g4qwrwvvvvpvc9j7q.github.dev" target="_blank"> | |
Microsoft URL for Sandra | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Step 1: Launch a New EC2 Instance (if not already done) | |
echo "Launching a new EC2 instance (if not done already)..." | |
# Go to AWS EC2 Dashboard and launch an instance with Ubuntu 22.04 LTS | |
# Step 2: SSH into Your EC2 Instance | |
echo "SSH into the EC2 instance using the key pair..." | |
# Use the command below to SSH into the EC2 instance (adjust path and IP) | |
# ssh -i ~/path/to/AI-pipeline-key.pem ubuntu@<your-ec2-public-ip> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Step 1: Clean previous setup and remove Docker containers, images, and volumes | |
echo "Cleaning previous Docker containers, images, and volumes..." | |
cd ~/ai_pipeline | |
sudo docker-compose down -v --rmi all --remove-orphans | |
sudo docker system prune -af | |
# Step 2: Install necessary dependencies | |
echo "Installing necessary packages..." |