project video :youtube
Design of Social Network website with Django
- Create new Post
- See all posts
- See profile of users
- Follow/unfollow users
- Pagination
- Edit user post
- “Like” and “Unlike” a Post
- Delete user's post
- See user's followers, following and suggestions
# clone repository
git clone https://github.com/saarikabhasi/cs50W-network.git
# Create a virtualenv(optional)
python3 -m venv venv
# Install all dependencies
pip install -r requirements.txt
# Activate the virtualenv
source venv/bin/activate or .venv/bin/activate
# Run application
./manage.py runserver or python manage.py runserver
saarikabhasi