Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group 23
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Bianca Aguilar
widget_group 23
Commits
4aac7ad0
Commit
4aac7ad0
authored
Mar 08, 2022
by
Bianca Aguilar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Trying to debug why the homepage module can't be found
parent
aa830e94
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
5 deletions
+10
-5
.env
widget_group_23/.env
+2
-1
settings.cpython-310.pyc
widget_group_23/__pycache__/settings.cpython-310.pyc
+0
-0
urls.cpython-310.pyc
widget_group_23/__pycache__/urls.cpython-310.pyc
+0
-0
__init__.cpython-310.pyc
...et_group_23/homepage/__pycache__/__init__.cpython-310.pyc
+0
-0
apps.cpython-310.pyc
widget_group_23/homepage/__pycache__/apps.cpython-310.pyc
+0
-0
urls.cpython-310.pyc
widget_group_23/homepage/__pycache__/urls.cpython-310.pyc
+0
-0
views.cpython-310.pyc
widget_group_23/homepage/__pycache__/views.cpython-310.pyc
+0
-0
urls.py
widget_group_23/homepage/urls.py
+5
-3
settings.py
widget_group_23/settings.py
+2
-0
urls.py
widget_group_23/urls.py
+1
-1
No files found.
widget_group_23/.env
View file @
4aac7ad0
SECRET_KEY='django-insecure-*(qier^-o5=az!3k%zs$y+!c1k6on)oi3%)_jiy(%h=34u=*1@'
STATIC_ROOT='static/'
\ No newline at end of file
STATIC_ROOT='static/'
DJANGO_SETTINGS_MODULE='widget_group_23.settings.production'
\ No newline at end of file
widget_group_23/__pycache__/settings.cpython-310.pyc
0 → 100644
View file @
4aac7ad0
File added
widget_group_23/__pycache__/urls.cpython-310.pyc
0 → 100644
View file @
4aac7ad0
File added
widget_group_23/homepage/__pycache__/__init__.cpython-310.pyc
0 → 100644
View file @
4aac7ad0
File added
widget_group_23/homepage/__pycache__/apps.cpython-310.pyc
0 → 100644
View file @
4aac7ad0
File added
widget_group_23/homepage/__pycache__/urls.cpython-310.pyc
0 → 100644
View file @
4aac7ad0
File added
widget_group_23/homepage/__pycache__/views.cpython-310.pyc
0 → 100644
View file @
4aac7ad0
File added
widget_group_23/homepage/urls.py
View file @
4aac7ad0
from
django.urls
import
path
from
.
import
views
from
.
views
import
index
urlpatterns
=
[
path
(
''
,
views
.
index
,
name
=
'index'
),
]
\ No newline at end of file
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"homepage"
\ No newline at end of file
widget_group_23/settings.py
View file @
4aac7ad0
...
...
@@ -12,6 +12,7 @@ https://docs.djangoproject.com/en/4.0/ref/settings/
from
pathlib
import
Path
from
dotenv
import
load_dotenv
import
os
load_dotenv
()
...
...
@@ -40,6 +41,7 @@ INSTALLED_APPS = [
'django.contrib.sessions'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'homepage'
,
]
MIDDLEWARE
=
[
...
...
widget_group_23/urls.py
View file @
4aac7ad0
...
...
@@ -17,6 +17,6 @@ from django.contrib import admin
from
django.urls
import
include
,
path
urlpatterns
=
[
path
(
'homepage/
, include(homepage.urls)'
),
path
(
'homepage/
'
,
include
(
'homepage.urls'
,
namespace
=
"homepage"
)
),
path
(
'admin/'
,
admin
.
site
.
urls
),
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment