/eotobi_dev.github.io

My portfolio, a react and django web app

Primary LanguagePython

eotobi_dev.github.io

Get to know everything about me as a full stack developer.

This web application built using Django 4, Django REST Framework 3, React 18, and Material UI 5.

Table of Contents

Prerequisites

Install the following prerequisites:

  1. Python 3.10.4 or higher
  2. Node.js 18.0.0 or higher
  3. Visual Studio Code

Installation

Backend

1. Create a virtual environment

From the root directory run:
cd backend
python3 -m venv venv

2. Activate the virtual environment

From the backend directory run:

  • On Windows:
    venv/Scripts/activate
  • On linux:
    source venv/bin/activate

3. Run the django backend

bash python3 manage.py runserver

Frontend

cd frontend
npm install
npm start