This website requires JavaScript.
Explore
Help
Sign In
ravenscroftj
/
django-project-structure
mirror of
https://github.com/saqibur/django-project-structure.git
Watch
1
Star
0
Fork
You've already forked django-project-structure
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
documentation
django-project-structure
/
config
/
urls.py
9 lines
111 B
Python
Raw
Permalink
Normal View
History
Unescape
Escape
Remove unnecessary example application and add additional more to core
2022-08-09 05:13:35 +01:00
from
django
.
urls
import
(
include
,
path
,
)
Add initial structure
2022-01-25 03:15:53 +00:00
urlpatterns
=
[
Fix incorrectly configured core URL and app label
2022-08-15 04:44:10 +01:00
path
(
"
"
,
include
(
"
apps.core.urls
"
)
)
,
Add initial structure
2022-01-25 03:15:53 +00:00
]