This is a simple Django project that implements a CRUD (Create, Read, Update, Delete) application with user authentication.
-
Clone the repository.
git clone https://github.com/JFOZ1010/DjangoAuth-CRUD/
-
Create a virtual environment and activate environment.
python3 -m venv venv
MacOs/Linux: ./venv/bin/activate Windows: .\venv\bin\activate
-
Install the requirements.
pip install -r requirements.txt
-
Run the server.
python manage.py runserver