「Django筆記」修訂間的差異

跳至導覽 跳至搜尋
增加 265 位元組 、 2022年9月18日 (日) 17:28
無編輯摘要
行 89: 行 89:
</pre>
</pre>


==setting.py 使用 SQLite==
<pre>
import os
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}
</pre>
==參考==
==參考==
* https://docs.djangoproject.com
* https://docs.djangoproject.com
* https://stackoverflow.com/questions/58024196/nginx-proxy-pass-gunicorn-can-t-be-reached 以及其他 stack overflow 答案
* https://stackoverflow.com/questions/58024196/nginx-proxy-pass-gunicorn-can-t-be-reached 以及其他 stack overflow 答案
* https://chentsungyu.github.io/2020/07/19/Python/Django/%5BDjango%5D%20%E5%9C%A8Ubuntu%E4%B8%AD%E9%81%8B%E7%94%A8Nginx%E3%80%81Gunicorn%20%E6%9E%B6%E8%A8%AD%20Django%20API%20Server
* https://chentsungyu.github.io/2020/07/19/Python/Django/%5BDjango%5D%20%E5%9C%A8Ubuntu%E4%B8%AD%E9%81%8B%E7%94%A8Nginx%E3%80%81Gunicorn%20%E6%9E%B6%E8%A8%AD%20Django%20API%20Server
 
* https://github.com/ekam317/Website/blob/master/ebdjango/settings.py
[[category:資訊]]
[[category:資訊]]

導覽選單