Blue Wave is a backend application built with Django and Python. It serves as the API provider for Blue Wave frontend, supplying necessary data and services.
- Provides APIs for Blue Wave frontend.
- API documentation available through ReDoc.
- Database models included in
docs
folder.
You can view the API specifications and documentation via ReDoc at:
https://<host>/api/specs/
The docs folder contains both conceptual and physical database models for reference.
To get the backend server running:
- Clone the repository.
- Install the dependencies.
- Add the
env.toml
file (request it from the administrator). - Run the server.
git clone <repository_url> cd BlueWave pip install -r requirements.txt python manage.py runserver