A basic social network designed using the Django web framework and its REST API
To execute this application, you must have Python, Django and the Django Rest Framework installed:
- Navigate to the “social-django” directory in the terminal
- Enter “python manage.py runserver 8080”
- The admin page can then be accessed using http://localhost:8080/admin/, the application using http://localhost:8080/social/ and the API using http://localhost:8080/social/api/
If you do not have Django installed:
- Enter “python install pip”
- Enter “pip install django”
- Enter “pip install djangorestframework”