Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 706 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 706 Bytes

DjangoAuth-CRUD

Home

This is a simple Django project that implements a CRUD (Create, Read, Update, Delete) application with user authentication.

Installation

  1. Clone the repository.

    git clone https://github.com/JFOZ1010/DjangoAuth-CRUD/
  2. Create a virtual environment and activate environment.

    python3 -m venv venv
    MacOs/Linux: ./venv/bin/activate
    Windows: .\venv\bin\activate
  3. Install the requirements.

    pip install -r requirements.txt
  4. Run the server.

    python manage.py runserver