Mahmood83367 / CarreerAcceleratorTask0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Degtalize Computiq Career Accelerator qulifcation Task

Description

This project is a test by Computiq to test the skills of the participants in the back-end part and their proficiency. This project adds fields to a table and queries about these fields, and there is an integrated application for the Users.

Installation

  • Fork this repo into your device and open it in any code editor.
  • You need Python Versin is 3.11.0
  • You need to install the Requirements by Type this in console pip install -r requirements.txt

Usage

  • first thing you need to migrate to build database. because i am using a custom User model, you can do 4 steps:
  1. Comment out django.contrib.admin in CareerAcceleratorTask0/settings/INSTALLED_APPS
  INSTALLED_APPS = [
   ...
   #'django.contrib.admin',
   ...
   ]
  1. Comment out admin path in CareerAcceleratorTask0/urls.py/
   urlpatterns = [
   ...
   #path('admin/', admin.site.urls) 
   ...
]
  1. Then run
python manage.py makemigrations
python manage.py migrate

  1. When done, uncomment all back

About


Languages

Language:Python 100.0%