My Django Portfolio Project

This repository contains my portfolio project built with Django. The project showcases my personal information, projects, and includes a contact form.

Features

  • Display personal information and projects
  • Contact form

Technologies Used

  • Django
  • HTML/CSS
  • JavaScript
  • Bootstrap (or any other frontend framework if used)

Setup Instructions

Prerequisites

  • Python 3.12 installed
  • pip (Python package installer)
  • Virtualenv (optional but recommended)

Installation

  1. Clone the repository:

    git clone https://github.com/ynstf/portfolio.git
    cd portfolio
    
    
  2. Create a virtual environment:

    python -m venv env
    source env/bin/activate  # On Windows use `env\Scripts\activate`
    
  3. Install the required packages:

    pip install -r requirements.txt
    
    
  4. Run the development server:

    python manage.py runserver
    

Open your browser and go to http://127.0.0.1:8000/ to see the project.