https://github.com/davisdre/resume.davisdre.me
My online resume
https://github.com/davisdre/resume.davisdre.me
Last synced: about 2 months ago
JSON representation
My online resume
- Host: GitHub
- URL: https://github.com/davisdre/resume.davisdre.me
- Owner: davisdre
- Created: 2025-01-05T19:05:32.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-03-25T22:19:26.000Z (3 months ago)
- Last Synced: 2025-03-25T23:26:03.845Z (3 months ago)
- Language: CSS
- Homepage: https://resume.davisdre.me/
- Size: 1.21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Drew Davis' Resume Application
This repository contains a containerized web application designed to showcase my resume. The application is built with modern technologies and follows cloud-native practices.
## Architecture
1. **Frontend**: A modern static website built with HTML, CSS, and JavaScript, featuring a responsive design and visitor counter integration.
2. **Backend**: A Python Flask application that serves both the static frontend content and provides a RESTful API for the visitor counter functionality.
3. **Database**: An external MariaDB database to persistently store visitor counts.## Repository Structure
- `src/frontend/`: Contains the frontend static files and Nginx configuration
- `src/backend/`: Contains the Flask application and requirements
- `.github/workflows/`: Contains CI/CD pipeline configurations## Features
- Modern, responsive design
- Visitor counter functionality
- Docker containerization
- Automated CI/CD pipeline with GitHub Actions
- Container image publishing to Docker Hub## Getting Started
### Prerequisites
- Docker
- Docker Compose (optional for local development)### Running Locally
1. Clone the repository:
```sh
git clone https://github.com/davisdre/resume.davisdre.me.git
cd resume.davisdre.me
```2. Configure environment variables:
```sh
DATABASE_USER=my_resume
DATABASE_PASSWORD=your_password
DATABASE_HOST=your_database_host
```3. Build and run the container:
```sh
docker run -p 8000:8000 \
-e DATABASE_USER=${DATABASE_USER} \
-e DATABASE_PASSWORD=${DATABASE_PASSWORD} \
-e DATABASE_HOST=${DATABASE_HOST} \
davisdre/resume:latest
```### Accessing the Application
- Web Interface: `http://localhost:8000`
- Visitor Counter API: `http://localhost:8000/visitors`## Deployment
The application uses GitHub Actions for CI/CD:
- Automated builds triggered by version tags (v*.*.*)
- Container images are published to Docker Hub with version tags and 'latest'
- Built-in security features including SBOM generation and Docker provenance## License
This project is licensed under the MIT License. See the `LICENSE` file for details.
## Acknowledgements
- Template by [StyleShout](https://www.styleshout.com/free-templates/ceevee/)
- Icons by [Font Awesome](https://fontawesome.com/)