Skip to content

Commit f9dde75

Browse files
committed
We can also go to git history. No need to leave unused code arond
1 parent bb9e5ed commit f9dde75

File tree

2 files changed

+0
-25
lines changed

2 files changed

+0
-25
lines changed

backend/app/admin.py

-11
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,3 @@ def get_user(self, obj):
7070
@admin.register(Print)
7171
class PrintAdmin(admin.ModelAdmin):
7272
exclude = [x for x in Print.__dict__.keys() if x.endswith('at')] + ['alert_overwrite']
73-
# print(f"excluding: {exclude}")
74-
75-
76-
# if settings.DEBUG:
77-
# admin.site.register(GCodeFile)
78-
# admin.site.register(GCodeFolder)
79-
# for name, model in inspect.getmembers(sys.modules[models.__name__], lambda x: inspect.isclass(x) and issubclass(x, Model)):
80-
# try:
81-
# admin.site.register(model)
82-
# except (AlreadyRegistered, ImproperlyConfigured):
83-
# pass

backend/config/settings.py

-14
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,6 @@ def get_bool(key, default):
223223
},
224224
},
225225
'loggers': {
226-
# SQL query logging can now be disabled by setting DISABLE_DEBUG_QUERY_LOGGING=True
227-
# 'django.db.backends': {
228-
# 'level': 'DEBUG',
229-
# 'handlers': ['console_debug'],
230-
# },
231226
'root': {
232227
'level': 'INFO',
233228
'handlers': ['console']
@@ -385,15 +380,6 @@ def get_bool(key, default):
385380
STATIC_ROOT = os.path.join(BASE_DIR, 'static_build')
386381
if not WEBPACK_LOADER_ENABLED:
387382
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
388-
# STORAGES only compatible with Django 4.2+
389-
# STORAGES = {
390-
# "default": {
391-
# "BACKEND": "django.core.files.storage.FileSystemStorage",
392-
# },
393-
# "staticfiles": {
394-
# "BACKEND": 'whitenoise.storage.CompressedManifestStaticFilesStorage',
395-
# },
396-
# }
397383
STATICFILES_DIRS = [
398384
os.path.join(BASE_DIR, '../frontend/static'),
399385
os.path.join(BASE_DIR, '../frontend/builds'),

0 commit comments

Comments
 (0)