This is my personal website/portfolio hosted at vkaramoutas.xyz. The website will be used to showcase my projects, skills, and experiences. It is built using AWS services and infrastructure as code principles.
The project utilizes various AWS services to host and manage the website. Key services include:
-
EC2: Used for hosting WordPress and MariaDB.
-
CloudFront: Content Delivery Network (CDN) for faster content delivery and improved website performance.
-
Route 53: Domain Name System (DNS) service for routing traffic to the website.
-
API Gateway: Used for creating the API to handle contact form submissions.
-
Lambda: Executes the serverless function to process contact form submissions.
-
Simple Email Service (SES): Sends email notifications for contact form submissions.
The infrastructure is defined and managed using CloudFormation templates. Here are the YAML file descriptions:
-
ec2-cloudfront.yaml
: Defines the infrastructure for EC2 instance hosting WordPress and MariaDB, and sets up CloudFront for CDN. -
mailer.yaml
: Sets up API Gateway, Lambda function, and SES for handling contact form submissions. -
main.yaml
: Contains the definition of the two stacks, including the resources defined inec2-cloudfront.yaml
andmailer.yaml
. -
.github/workflows/Deploy-Portfolio-Website.yaml
: CI/CD workflow for automatically deploying the project on AWS whenever changes are committed to the repository.
To deploy the project locally or on AWS, follow these steps:
-
Clone the repository.
-
Navigate to the project directory.
-
Modify the CloudFormation templates or any other files as needed.
-
Commit your changes.
-
Push changes to the repository.
-
The CI/CD pipeline will automatically trigger a deployment on AWS.
For local development and testing:
-
Set up a local development environment with WordPress and MariaDB.
-
Configure API Gateway, Lambda, and SES locally using AWS SAM (Serverless Application Model) or equivalent tools.