Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Test project #1

Languages: Python, JS
Tools: Django Framework, Docker

Running:

Project will be by url: http://localhost:8000.
Superuser login: admin, password: admin.

Local:

  • Migrate db: python manage.py migrate

  • Add fixtures with superuser auth data: python manage.py loaddata fixtures.json

  • Run server: python manage.py runserver 0.0.0.0:8000

Docker:

docker-compose -f deploy/docker-compose.yml up --build


Task

  • Pages: login + list of users;
  • All CRUD operations of user data(in particular, changing their permissions - full access or only reading access);
  • Use JS;
  • Use ORM and raw SQL.