FRS (Flight Reservation System) is Restfull API project with django rest framework.
- Install modules in
requirments.txt
- Make a copy from
development.py.dist
and rename it without.dist
postfix. And fill you DB info on that. This projects usemariaDB
as database. /api/v1/users/
create new user/api/v1/login/
login API. This api will return a JWT token.- use that token to
get
/api/v1/flights/?search=
, createapi/v1/flights/
, update/api/v1/flights/{pk}/
an delete/api/v1/flights/{pk}
flights. Feel free to ask aby question.