Skip to content

po8klasie/po8klasie-api

Folders and files

NameName
Last commit message
Last commit date
Dec 5, 2021
Jun 13, 2021
Jun 15, 2021
Feb 15, 2020
Jun 12, 2021
Sep 7, 2020
Jun 13, 2021
May 5, 2021
Jun 13, 2021
Apr 26, 2020
Feb 15, 2020
Apr 27, 2021
May 5, 2021
Jun 13, 2021
Apr 26, 2020
Aug 24, 2020
Jun 13, 2021
Jan 25, 2020
Apr 22, 2020
Apr 26, 2020

Repository files navigation

WarsawLO BE

Local development

Requirements:

  • docker
  • docker-compose

Copy an example docker-compose.yml file from: warsawlo/infra and paste it to the project's root directory.

In the root directory create your .env file with variables:

DB_USER=warsawlo
DB_PASSWORD=warsawlo
DB_NAME=warsawlo

In the docker-compose.yml change backend's env_file to your .env file's name. You might also want to set DJANGO_DEBUG to "True".

Run

docker-compose up -d --build # build and start containers

docker-compose exec web python manage.py migrate --noinput # run migrations

The application should be available at 127.0.0.1:80.

Linter

We use black autoformatter and flake8.

Install:

pip install black # install
pip install flake8

Run:

black .
flake8

Queries

Boolean filtering

Besides normal URI syntax, you can also use OR's and AND's in GET requests. For OR put a '|' (pipe) character between options, eg.: /api/subject/?high_school_class=&id=&name=pol|hist should return a list of all subjects with name either "pol", "hist" or "ang".

For AND just add the param once again with a new condition, eg: /api/school/?highschoolclass__extendedsubject__name=mat&highschoolclass__extendedsubject__name=fiz should return a list of all schools with classes that has both maths and physics as their extended subjects

You can mix ORs and ANDs in the same request. OR has a higher precedence.

Ordering

Add an 'ordering=name_of_the_field'. For descending order, precede name of the field with a dash. You can also order by nested fields. Eg: /api/school/?ordering=school_type,-id should return a list of all schools, ordered by school type in ascending order, and by id in descending order.