Finish packaging and change to src-based packaging layout, replace caddy with haproxy for performance, and update docker-compose and Dockerfiles for new packaging.
This commit is contained in:
parent
959b06c425
commit
762361a21b
210 changed files with 235 additions and 168 deletions
16
src/pkmntrade_club/accounts/urls.py
Normal file
16
src/pkmntrade_club/accounts/urls.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.urls import path
|
||||
from .views import (
|
||||
AddFriendCodeView,
|
||||
DeleteFriendCodeView,
|
||||
ChangeDefaultFriendCodeView,
|
||||
EditFriendCodeView,
|
||||
DashboardView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
path("friend-codes/add/", AddFriendCodeView.as_view(), name="add_friend_code"),
|
||||
path("friend-codes/edit/<int:pk>/", EditFriendCodeView.as_view(), name="edit_friend_code"),
|
||||
path("friend-codes/delete/<int:pk>/", DeleteFriendCodeView.as_view(), name="delete_friend_code"),
|
||||
path("friend-codes/default/<int:pk>/", ChangeDefaultFriendCodeView.as_view(), name="change_default_friend_code"),
|
||||
path("dashboard/", DashboardView.as_view(), name="dashboard"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue