-
Notifications
You must be signed in to change notification settings - Fork 1
/
deploying.html
149 lines (96 loc) · 2.84 KB
/
deploying.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
compressing static files procedure
pip install django-compressor
{% load compress %}
{% compress css %}
<link rel="stylesheet" href="/static/css/style1.css">
<link rel="stylesheet" href="/static/css/style2.css">
{% endcompress %}
{% compress js %}
<script src="/static/js/script1.js"></script>
<script src="/static/js/script2.js"></script>
{% endcompress %}
INSTALLED_APPS = [
# ...
'compressor',
# ...
]
python manage.py collectstatic --settings=myapp.settings
This will collect all your static files, including the compressed files, into the STATIC_ROOT directory specified in your settings file
note: If you're not sure what the name of your custom settings module is, you can check your project's manage.py file to see how it's configured.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Base.settings')
pip freeze > requirements.txt
WHITENOISE
check the webcsite or watch this youtube video.
https://www.youtube.com/watch?v=OeywgMArAGM&t=206s
#####
Production setting tips.
STATIC_URL = '/static/'
STATICFILES_DIRS = [
BASE_DIR / 'static',
]
STATIC_ROOT = BASE_DIR / 'staticfiles'
STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
#CKEDITOR_UPLOAD_PATH = 'media/'
CKEDITOR_UPLOAD_PATH = 'static/'
MEDIA_URL = '/media/'
#MEDIA_ROOT = BASE_DIR / 'media'
MEDIA_ROOT = BASE_DIR / 'media/images'
UPLOADING TO CLOUDINARY
https://www.youtube.com/watch?v=i0ar7W98Osc
settings.py
import cloudinary_storage
INSTALLED_APPS = [
'django.contrib.admin',
'######',
'cloudinary',
'cloudinary_storage',
]
CLOUDINARY_STORAGE = {
'CLOUD_NAME': 'dsn4n7d0s',
'API_KEY': '244182521457459',
'API_SECRET': 'f9REzylHYSarCfXdxJ4WsT6RSkg',
}
Setting debug to false
DEBUG = False
DEBUG_PROPAGATE_EXCEPTIONS = True
when DEBUG = False
DEBUG = False
DEBUG_PROPAGATE_EXCEPTIONS = True
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format' : "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s",
'datefmt' : "%d/%b/%Y %H:%M:%S"
},
'simple': {
'format': '%(levelname)s %(message)s'
},
},
'handlers': {
'file': {
'level': 'DEBUG',
'class': 'logging.FileHandler',
'filename': 'mysite.log',
'formatter': 'verbose'
},
},
'loggers': {
'django': {
'handlers':['file'],
'propagate': True,
'level':'DEBUG',
},
'MYAPP': {
'handlers': ['file'],
'level': 'DEBUG',
},
}
}
WHITENOISE_MANIFEST_STRICT = False
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'compressor.finders.CompressorFinder',
]