Backend server for membership portal app, the server is has both REST API and a client.
The REST API is responsible for user operations and all required endpoints and API routes to power the client applications.
The client app is a portal that can be used by application owner to perform admin tasks.
https://drive.google.com/file/d/11NFxucsY-oLUPudnvShq-uWaoXBVbixX/view
https://trello.com/invite/b/gMzU5mQU/ATTI8a084a091f817702c660eb86838a36660F10FBC1/membership-portal
The backend is powered by Python, django, PostgreSQL
Python packages are required to run the server, run pip install
with the following packages:
PIP install pakacges:
pip install django_rest_framework djangorestframework_simplejwt django-cors-headers django-bootstrap4 django-bootstrap-datepicker-plus
Create .env
file in root directory and add the following required enivromental variables
DATABASEHOSTNAME = PostgreSQL address
DATABASENAME =
DATABASEUSER =
DATABASEPASSWORD =
DATABASEPORT = 5432
- As an Admin, I should be able to see all organizations.
- As an Admin, I should be able to edit/update an organization.
- As an Admin, I should be able to delete an organization.
- As an Admin, I should be able to see all organization members.
- As an Admin, I should be able to remove a user from the organization.
- As an Admin, I should be able to see all users.
- As an Admin, I should be able to update a user.
- Backend user authentication and access token.
- Backend input verification for most of the API endpoints.
- CRUD operations for users, profiles, benefits, and events.
- Admin portal interface to perform superuser actions.
- Non-admin users cannot access the portal.
Most REST API endpoints are documented using postman, click here to view the docs
- Role authentication and restrictions.
- Invoice and payment routes.
- Search feature.
- Some API handling Security needs to be fixed.