File tree 6 files changed +23
-35
lines changed
{{cookiecutter.project_slug}}
6 files changed +23
-35
lines changed Original file line number Diff line number Diff line change 1
- # ruff: noqa
2
1
"""
3
2
ASGI config for {{ cookiecutter.project_name }} project.
4
3
25
24
26
25
# This application object is used by any ASGI server configured to use this file.
27
26
django_application = get_asgi_application ()
28
- # Apply ASGI middleware here.
29
- # from helloworld.asgi import HelloWorldApplication
30
- # application = HelloWorldApplication(application)
31
27
32
28
# Import websocket application here, so apps from django_application are loaded first
33
- from config .websocket import websocket_application
29
+ from config .websocket import websocket_application # noqa: E402
34
30
35
31
36
32
async def application (scope , receive , send ):
Original file line number Diff line number Diff line change 1
- # ruff: noqa
2
1
from django .conf import settings
3
2
from django .conf .urls .static import static
4
3
from django .contrib import admin
77
76
if "debug_toolbar" in settings .INSTALLED_APPS :
78
77
import debug_toolbar
79
78
80
- urlpatterns = [path ("__debug__/" , include (debug_toolbar .urls ))] + urlpatterns
79
+ urlpatterns = [
80
+ path ("__debug__/" , include (debug_toolbar .urls )),
81
+ * urlpatterns ,
82
+ ]
Original file line number Diff line number Diff line change 1
- # ruff: noqa
2
1
"""
3
2
WSGI config for {{ cookiecutter.project_name }} project.
4
3
25
24
# {{ cookiecutter.project_slug }} directory.
26
25
BASE_DIR = Path (__file__ ).resolve (strict = True ).parent .parent
27
26
sys .path .append (str (BASE_DIR / "{{ cookiecutter.project_slug }}" ))
28
- # We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
29
- # if running multiple sites in the same mod_wsgi process. To fix this, use
30
- # mod_wsgi daemon mode with each site in its own daemon process, or use
31
- # os.environ["DJANGO_SETTINGS_MODULE"] = "config.settings.production"
32
27
os .environ .setdefault ("DJANGO_SETTINGS_MODULE" , "config.settings.production" )
33
28
34
29
# This application object is used by any WSGI server configured to use this
35
30
# file. This includes Django's development server, if the WSGI_APPLICATION
36
31
# setting points here.
37
32
application = get_wsgi_application ()
38
- # Apply WSGI middleware here.
39
- # from helloworld.wsgi import HelloWorldApplication
40
- # application = HelloWorldApplication(application)
Original file line number Diff line number Diff line change 1
- # ruff: noqa
1
+ # ruff: noqa: ERA001, PTH100
2
2
# Configuration file for the Sphinx documentation builder.
3
3
#
4
4
# This file only contains a selection of the most common options. For a full
13
13
14
14
import os
15
15
import sys
16
+
16
17
import django
17
18
18
- if os .getenv ("READTHEDOCS" , default = False ) == "True" :
19
+ if os .getenv ("READTHEDOCS" , default = " False" ) == "True" :
19
20
sys .path .insert (0 , os .path .abspath (".." ))
20
21
os .environ ["DJANGO_READ_DOT_ENV_FILE" ] = "True"
21
22
os .environ ["USE_DOCKER" ] = "no"
32
33
# -- Project information -----------------------------------------------------
33
34
34
35
project = "{{ cookiecutter.project_name }}"
35
- copyright = """{% now 'utc', '%Y' %}, {{ cookiecutter.author_name }}"""
36
+ copyright = """{% now 'utc', '%Y' %}, {{ cookiecutter.author_name }}""" # noqa: A001
36
37
author = "{{ cookiecutter.author_name }}"
37
38
38
39
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
- # ruff: noqa
2
+ """Django's command-line utility for administrative tasks."""
3
3
import os
4
4
import sys
5
5
from pathlib import Path
6
6
7
- if __name__ == "__main__" :
7
+
8
+ def main ():
9
+ """Run administrative tasks."""
8
10
os .environ .setdefault ("DJANGO_SETTINGS_MODULE" , "config.settings.local" )
9
11
10
12
try :
11
13
from django .core .management import execute_from_command_line
12
- except ImportError :
13
- # The above import may fail for some other reason. Ensure that the
14
- # issue is really that Django is missing to avoid masking other
15
- # exceptions on Python 2.
16
- try :
17
- import django
18
- except ImportError :
19
- raise ImportError (
20
- "Couldn't import Django. Are you sure it's installed and "
21
- "available on your PYTHONPATH environment variable? Did you "
22
- "forget to activate a virtual environment?"
23
- )
24
-
25
- raise
14
+ except ImportError as exc :
15
+ raise ImportError ( # noqa: TRY003
16
+ "Couldn't import Django. Are you sure it's installed and " # noqa: EM101
17
+ "available on your PYTHONPATH environment variable? Did you "
18
+ "forget to activate a virtual environment?" ,
19
+ ) from exc
26
20
27
21
# This allows easy placement of apps within the interior
28
22
# {{ cookiecutter.project_slug }} directory.
29
23
current_path = Path (__file__ ).parent .resolve ()
30
24
sys .path .append (str (current_path / "{{ cookiecutter.project_slug }}" ))
31
25
32
26
execute_from_command_line (sys .argv )
27
+
28
+
29
+ if __name__ == "__main__" :
30
+ main ()
Original file line number Diff line number Diff line change 1
- # ruff: noqa
2
1
import os
3
2
from collections .abc import Sequence
4
3
from pathlib import Path
You can’t perform that action at this time.
0 commit comments