As shown in The Social Network movie built with Python using the Django Web Framework.
Check the website at http://thefacebook.pythonanywhere.com
Welcome Page
Profile Page
Clone this repository:
$ git clone https://github.com/thetruefuss/thefacebook.gitInstall requirements:
$ pip install -r requirements.txtCopy .env.example file content to new .env file and update the credentials if any.
Run Django migrations to create database tables:
$ python manage.py migrateRun the development server:
$ python manage.py runserverVerify the deployment by navigating to http://127.0.0.1:8000 in your preferred browser.

