- Django Design Patterns and Best Practices
- Arun Ravindran
- 122字
- 2021-07-23 19:36:21
Before starting the project
While preparing a development environment, make sure that you have the following in place:
- A fresh Python virtual environment: Python 3 includes the
venv
module or you can installvirtualenv
. Both of them prevent polluting your global Python library. - Version control: Always use a version control tool such as Git or Mercurial. They are life savers. You can also make changes much more confidently and fearlessly.
- Choose a project template: Django's default project template is not the only option. Based on your needs try others such as
twoscoops
(https://github.com/twoscoops/django-twoscoops-project) oredge
(https://github.com/arocks/edge). - Deployment pipeline: I usually worry about this a bit later, but having an easy deployment process helps to show early progress. I prefer Fabric or Ansible.
推薦閱讀
- 從零開始構建企業級RAG系統
- SQL for Data Analytics
- Scratch 3游戲與人工智能編程完全自學教程
- Mastering Ext JS
- 琢石成器:Windows環境下32位匯編語言程序設計
- Web Development with MongoDB and Node(Third Edition)
- Angular開發入門與實戰
- Salesforce Reporting and Dashboards
- R用戶Python學習指南:數據科學方法
- QGIS Python Programming Cookbook(Second Edition)
- OpenCV with Python Blueprints
- Go語言入門經典
- HTML5移動前端開發基礎與實戰(微課版)
- Python面試通關寶典
- Head First Kotlin程序設計