Skip to content

thetruefuss/thefacebook

Repository files navigation

Thefacebook

As shown in The Social Network movie built with Python using the Django Web Framework.

Demo

Check the website at http://thefacebook.pythonanywhere.com

Welcome Page

Thefacebook Screenshot

Profile Page

Thefacebook Profile Screenshot

Installation Guide

Clone this repository:

$ git clone https://github.com/thetruefuss/thefacebook.git

Install requirements:

$ pip install -r requirements.txt

Copy .env.example file content to new .env file and update the credentials if any.

Run Django migrations to create database tables:

$ python manage.py migrate

Run the development server:

$ python manage.py runserver

Verify the deployment by navigating to http://127.0.0.1:8000 in your preferred browser.