A Django movie application with pagination, search and authorization
-
CRUD functionality
-
Authorization(admin only)
-
Pagination support
-
File upload support
-
Styled with Tailwindcss
- Create a virtual environment with
venv
or any other
python -m venv myenv
- Install the package from the
requirements.txt
file
pip install -r requirements.txt
- Run the application with:
python manage.py runserver
and then run the tailwindcss server with:
python manage.py tailwind start
in a new terminal shell.
- Visit
http://localhost:8000/
to the see the app.