Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
library-app-django
Project
Project
Details
Activity
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
Ilham Maulana
library-app-django
Commits
138a015b
Commit
138a015b
authored
Jun 30, 2024
by
impfundev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: rename settings dir as config
parent
d620aa9a
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
4 additions
and
4 deletions
+4
-4
__init__.py
config/__init__.py
+0
-0
__init__.cpython-312.pyc
config/__pycache__/__init__.cpython-312.pyc
+0
-0
settings.cpython-312.pyc
config/__pycache__/settings.cpython-312.pyc
+0
-0
urls.cpython-312.pyc
config/__pycache__/urls.cpython-312.pyc
+0
-0
wsgi.cpython-312.pyc
config/__pycache__/wsgi.cpython-312.pyc
+0
-0
asgi.py
config/asgi.py
+0
-0
settings.py
config/settings.py
+2
-2
urls.py
config/urls.py
+0
-0
wsgi.py
config/wsgi.py
+0
-0
urls.cpython-312.pyc
dashboards/__pycache__/urls.cpython-312.pyc
+0
-0
manage.py
manage.py
+2
-2
No files found.
library_django
/__init__.py
→
config
/__init__.py
View file @
138a015b
File moved
library_django
/__pycache__/__init__.cpython-312.pyc
→
config
/__pycache__/__init__.cpython-312.pyc
View file @
138a015b
File moved
library_django
/__pycache__/settings.cpython-312.pyc
→
config
/__pycache__/settings.cpython-312.pyc
View file @
138a015b
No preview for this file type
library_django
/__pycache__/urls.cpython-312.pyc
→
config
/__pycache__/urls.cpython-312.pyc
View file @
138a015b
File moved
library_django
/__pycache__/wsgi.cpython-312.pyc
→
config
/__pycache__/wsgi.cpython-312.pyc
View file @
138a015b
File moved
library_django
/asgi.py
→
config
/asgi.py
View file @
138a015b
File moved
library_django
/settings.py
→
config
/settings.py
View file @
138a015b
...
...
@@ -55,7 +55,7 @@ MIDDLEWARE = [
"django.middleware.clickjacking.XFrameOptionsMiddleware"
,
]
ROOT_URLCONF
=
"
library_django
.urls"
ROOT_URLCONF
=
"
config
.urls"
TEMPLATES
=
[
{
...
...
@@ -73,7 +73,7 @@ TEMPLATES = [
},
]
WSGI_APPLICATION
=
"
library_django
.wsgi.application"
WSGI_APPLICATION
=
"
config
.wsgi.application"
# Database
...
...
library_django
/urls.py
→
config
/urls.py
View file @
138a015b
File moved
library_django
/wsgi.py
→
config
/wsgi.py
View file @
138a015b
File moved
dashboards/__pycache__/urls.cpython-312.pyc
View file @
138a015b
No preview for this file type
manage.py
View file @
138a015b
...
...
@@ -6,7 +6,7 @@ import sys
def
main
():
"""Run administrative tasks."""
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'library_django.settings'
)
os
.
environ
.
setdefault
(
"DJANGO_SETTINGS_MODULE"
,
"config.settings"
)
try
:
from
django.core.management
import
execute_from_command_line
except
ImportError
as
exc
:
...
...
@@ -18,5 +18,5 @@ def main():
execute_from_command_line
(
sys
.
argv
)
if
__name__
==
'__main__'
:
if
__name__
==
"__main__"
:
main
()
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