A crowdfunding app created with Django Rest Framework (and React). Filtering by location, users can view and donate to projects that matter to them and their community directly.
Disclaimer: only Brisbane suburbs are currently supported.
Deployed on Heroku.
- Python
- Django
- Django Rest Framework (DRF)
- Javascript
- React
- VSCode
- Insomnia
- Navigate to the POST /users/ request
- In the 'body' tab, select JSON
- In the 'body' field, enter new user credentials:
{ "username": "username", "email": "email", "password": "password" }
- Send the request and the new user is successfully created
- Navigate to the POST /projects/ request
- In the 'body' tab, select JSON
- In the 'body' field, enter new project details:
{ "title": "New Project", "description": "Another test project", "goal" : 5000, "location": "BARDON", "image": "https://via.placeholder.com/300.jpg", "is_open": true, "date_created": "2020-03-20T14:28:23.382748Z" }
- Send the request and the new project is successfully created