mirror of
https://github.com/thecyberlearn/modern-django-starter.git
synced 2026-08-18 13:52:55 +00:00
✨ Features: - Complete Django project with authentication - Email/password and social login (Google, Facebook) - Role-based access control (admin, staff, user) - Docker and Docker Compose setup - Production-ready configuration - Static file handling with WhiteNoise - PostgreSQL database integration - Comprehensive documentation - GitHub CI/CD workflows - Dokploy deployment configuration 🚀 Ready for deployment on Dokploy, Heroku, Railway, and other platforms
10 lines
299 B
Python
10 lines
299 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'accounts'
|
|
|
|
urlpatterns = [
|
|
path('profile/', views.ProfileView.as_view(), name='profile'),
|
|
path('profile/edit/', views.ProfileUpdateView.as_view(), name='profile_edit'),
|
|
path('dashboard/', views.dashboard, name='dashboard'),
|
|
] |