This is the Frontend part of the Python implementation of the social network. The Backend part is also required for full work.
In this part, the basic functionality of interacting with the server part in a social network is implemented:
- create a user;
- login to the system;
- create a basic post;
- create a post with an image;
- view the feed;
- set the level of access to the post;
- search for people on the net;
- subscribe to other people and view their publications;
- maintaining a session using a JWT token;
- JWT token update;
-
Open terminal in the project folder.
-
Create virtual environment.
pipenv --python 3.7
orpipenv --python 3.8
pipenv install --dev
-
Run
main.py
with virtual environment you made above. -
Setup backend HREF