/Django-Crud-Api-Operations

Django full crud/api webapp with login/signup/auth features, modifying the default django admin pannel.

Primary LanguagePython

𝐇𝐞𝐥𝐥𝐨 𝐭𝐡𝐞𝐫𝐞, 𝐟𝐞𝐥𝐥𝐨𝐰 <𝚌𝚘𝚍𝚎𝚛𝚜/>!

To run the program, you have to install the following dependencies:

python -m venv env

..\env\Scripts\activate

pip install django

To start a new project, run the following command:

django-admin startproject project_name

To start a new app inside your project, run the following command:

pyhton manage.py startapp app_name

To run the server, run the following command:

python manage.py runserver