Careers Website Project
Project Overview
This project is a full-stack careers website built with Flask and MySQL, deployed on Azure. The website allows companies to post job openings and candidates to view available positions. This documentation covers the development process, technologies used, and deployment steps. You can view the live demo here: Daniel Obare Careers Website.
Tech Stack
- Backend: Flask (Python web framework)
- Database: MySQL
- Frontend: HTML, CSS, JavaScript
- Cloud Platform: Microsoft Azure
- Version Control: Git/GitHub
Project Structure
daniel-obare-careers-website/
├── app/
│ ├── static/
│ │ ├── css/
│ │ └── js/
│ ├── templates/
│ │ ├── base.html
│ │ ├── home.html
│ │ └── job_listing.html
│ └── __init__.py
├── database/
│ └── schema.sql
├── requirements.txt
└── app.py
Key Features
- Dynamic job listings display
- Database integration for persistent storage
- Responsive web design
- Azure cloud hosting
- Clean and intuitive user interface
Development Process
1. Initial Setup
# Create virtual environment
python -m venv venv
source venv/bin/activate # Linux/Mac
venv\Scripts\activate # Windows
# Install dependencies
pip install flask mysql-connector-python python-dotenv
2. Database Configuration
# Database connection setup
app.config['MYSQL_HOST'] = 'your-azure-mysql-server.mysql.database.azure.com'
app.config['MYSQL_USER'] = 'your_username'
app.config['MYSQL_PASSWORD'] = 'your_password'
app.config['MYSQL_DB'] = 'careers_db_name'
3. Flask Application Structure
from flask import Flask, jsonify, render_template, request
from sqlalchemy import text
from database import engine
import os
app = Flask(__name__)
def load_jobs_from_db():
with engine.connect() as conn:
result = conn.execute(text("SELECT * FROM jobs"))
jobs = result.all()
return jobs
@app.route("/")
def home():
jobs = load_jobs_from_db()
return render_template('home.html', jobs=jobs, company_name='danielobare')
@app.route("/api/jobs")
def list_jobs():
return jsonify(load_jobs_from_db())
@app.route("/apply/<int:job_id>", methods=["GET", "POST"])
def apply_to_job(job_id):
if request.method == "POST":
name = request.form.get('name')
email = request.form.get('email')
phone = request.form.get('phone')
address = request.form.get('address')
linkedin_profile = request.form.get('linkedin')
portfolio_link = request.form.get('portfolio')
cover_letter = request.form.get('cover_letter')
resume_file = request.files['resume']
resume_data = resume_file.read()
with engine.connect() as conn:
conn.execute(text("""
INSERT INTO applications (job_id, name, email, phone, address, linkedin_profile, portfolio_link, cover_letter, resume)
VALUES (:job_id, :name, :email, :phone, :address, :linkedin_profile, :portfolio_link, :cover_letter, :resume)
"""), {
'job_id': job_id,
'name': name,
'email': email,
'phone': phone,
'address': address,
'linkedin_profile': linkedin_profile,
'portfolio_link': portfolio_link,
'cover_letter': cover_letter,
'resume': resume_data,
})
return render_template('thank_you.html', name=name)
return render_template('apply.html', job_id=job_id)
if __name__ == "__main__":
app.run(host='0.0.0.0', debug=True)
4. Database Schema
CREATE TABLE jobs (
id INT AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(255),
location VARCHAR(255),
salary VARCHAR(100),
requirements TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
Deployment Process.
1. Azure Setup
- Create Azure account and resources
- Set up Azure MySQL database
- Configure Azure App Service
2. Environment Configuration
# Create .env file
MYSQL_HOST=your-server.mysql.database.azure.com
MYSQL_USER=your_username
MYSQL_PASSWORD=your_password
MYSQL_DB=careers_db
3. Deployment Steps
# Prepare for deployment
pip freeze > requirements.txt
# Configure Azure deployment
az webapp up --name daniel-obare-careers --resource-group your-resource-group
Testing
- Local testing using Flask development server
- Database connection testing
- Frontend responsiveness testing
- Azure deployment testing
Future Improvements
- User authentication system
- Job application submission feature
- Admin dashboard for job posting
- Search and filter functionality
- Email notifications system
Lessons Learned
- Importance of proper database design
- Benefits of cloud deployment
- Value of responsive design
- Significance of version control
- Importance of environment variables
Running Locally
# Clone repository
git clone https://github.com/danielobare/daniel-obare-careers-website.git
# cd into the folder
cd daniel-obare-careers-website
# Install dependencies
pip install -r requirements.txt
# Set up environment variables
cp .env.example .env
# Edit .env with your credentials
# Run application
python app.py
# or alternatively
gunicorn app:app
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request