This is a basic website clone of Facebook web app.
- User Authentication
- Basic posting
- Friending features
- Basic photo features
- (Technical) SQL Optimization
- Check out the live web app at https://mtran.io
- Test user account: username(test), password(test1234)
Create a virtualenv and activate it:
python3 -m venv ~/.virtualenvs/minifacebook
source ~/.virtualenvs/minifacebook/bin/activate
Cd into a workplace and clone the git repo (with SSH):
git clone git@github.com:manhtran95/mini-facebook.git
cd mini-facebook
Install Python packages:
pip install -r requirements.txt
Start up the server:
python manage.py runserver
See the app running at http://localhost:8000.