This project is a fork of https://github.com/vitorfs/bootcamp
Django Social Network is an open source enterprise social network built with Python using the Django Web Framework.
The project has three basic apps:
- Feed (A Twitter-like microblog)
- Articles (A collaborative blog)
- Question & Answers (A Stack Overflow-like platform)
The Feed app has infinite scrolling, activity notifications, live updates for likes and comments, and comment tracking.
The Articles app is a basic blog, with articles pagination, tag filtering and draft management.
The Q&A app works just like Stack Overflow. You can mark a question as favorite, vote up or vote down answers, accept an answer and so on.
- Python 3.8
- Django 3.1.7
- Twitter Bootstrap 3
- jQuery 2
git clone https://github.com/suhailvs/django-social-network
cd django-social-network
cp .env.example .env
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
./manage.py migrate
./manage.py runserver
Try Django Social Network now at https://suhail.herokuapp.com.