Home Management Application
You'll need to install the following list of packages (using whatever package manager you want) to run this package:
- Django (pip install django)
- social-auth-app-django (pip install social-auth-app-django)
- Some Bootstrap css files
- Django Rest Framework (pip install djangorestframework)
- Markdown (pip install markdown) That's about it.
If you want to run the app on your localhost server, run the command python manage.py runserver within the TrackTrigger directory.
"users": "http://localhost:8000/api/users/", "diary": "http://localhost:8000/api/diary/", "inventory_object": "http://localhost:8000/api/inventory_object/", "todoitem": "http://localhost:8000/api/todoitem/", "image_object": "http://localhost:8000/api/image_object/" You can test the response using POSTMAN (Download it online). To use POSTMAN simply click on the application, run the backend django server, and then try GET and POST requests to the required API link, you'll be able to see the response for GET requests.