Django gitignore

news/2025/1/24 17:49:42/文章来源:https://www.cnblogs.com/wt7018/p/18689876

实用

# 配置文件
.DS_Store
.idea/# 编译文件
__pycache__/       
*.py[cod]
*$py.class            # Django 项目中的日志文件和本地配置文件
*.log    
local_settings.py
db.sqlite3
db.sqlite3-journal# 虚拟环境
.env            
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

全部

# Byte-compiled / optimized / DLL files
__pycache__/       """Python 文件编译后的缓存目录。git上传时会忽略该目录下的文件"""
*.py[cod]        """Python 文件编译后的字节码文件(如 .pyc、.pyo、.pyd)。"""
*$py.class        """Python 文件编译后的类文件。"""# C extensions
*.so    """C 语言扩展生成的共享库文件。"""# Distribution / packaging
.Python
build/
develop-eggs/    """.Python、build/、develop-eggs/ 等:这些是 Python 包分发和构建过程中生成的一些临时文件和目录。"""
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST# PyInstaller        
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec        """*.manifest、*.spec:PyInstaller 构建可执行文件时生成的配置和清单文件。"""# Installer logs
pip-log.txt
pip-delete-this-directory.txt
"""pip-log.txt、pip-delete-this-directory.txt:pip 安装日志文件。"""# Unit test / coverage reports  
htmlcov/        """htmlcov/、.tox/ 等:单元测试和覆盖率报告生成的文件和目录。"""
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/# Translations
*.mo
*.pot        """*.mo、*.pot:国际化的翻译文件。"""# Django stuff:
*.log            """*.log、local_settings.py 等:Django 项目中的日志文件和本地配置文件。"""
local_settings.py
db.sqlite3
db.sqlite3-journal# Flask stuff:
instance/
.webassets-cache# Scrapy stuff:
.scrapy            """.scrapy:Scrapy 爬虫框架的相关文件。"""# Sphinx documentation
docs/_build/            """docs/_build/:Sphinx 生成文档的构建目录。"""# PyBuilder
.pybuilder/                """.pybuilder/、target/:PyBuilder 构建工具生成的文件。"""
target/# Jupyter Notebook
.ipynb_checkpoints        """.ipynb_checkpoints:Jupyter Notebook 的检查点文件。"""# IPython
profile_default/            """profile_default/、ipython_config.py:IPython 的配置和默认配置文件。"""
ipython_config.py# pyenv
#   For a library or package, you might want to ignore these files since the code is
#   intended to run in multiple environments; otherwise, check them in:
# .python-version """.python-version:pyenv 使用的 Python 版本文件。"""# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock# poetry
#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
#   This is especially recommended for binary packages to ensure reproducibility, and is more
#   commonly ignored for libraries.
#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock# pdm
#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
#   in version control.
#   https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/        """.pdm.toml、.pdm-python、.pdm-build/:pdm 相关的配置和构建文件。"""# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
"""__pypackages__/:PEP 582 定义的包目录。"""
# Celery stuff
celerybeat-schedule
celerybeat.pid
"""celerybeat-schedule、celerybeat.pid:Celery 任务调度器的相关文件。"""
# SageMath parsed files
*.sage.py
"""*.sage.py:SageMath 解析生成的 Python 文件。"""
# Environments
.env            """.env、.venv 等:虚拟环境相关文件。"""
.venv
env/
venv/
ENV/
env.bak/
venv.bak/# Spyder project settings
.spyderproject            """.spyderproject、.spyproject:Spyder IDE 的项目设置文件。"""
.spyproject# Rope project settings
.ropeproject
""".ropeproject:Rope(Python 重构工具)的项目设置文件。"""
# mkdocs documentation
/site
"""/site:mkdocs 生成的静态文档目录。"""
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
""".mypy_cache/、.dmypy.json 等:mypy 类型检查器的缓存文件。"""
# Pyre type checker
.pyre/
""".pyre/:Pyre 类型检查器的相关文件。"""
# pytype static type analyzer
.pytype/
""".pytype/:pytype 静态类型分析器的相关文件。"""
# Cython debug symbols
cython_debug/
"""cython_debug/:Cython 调试符号文件。"""
# PyCharm
#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can
#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
#  and can be added to the global gitignore or merged into this file.  For a more nuclear
#  option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/
""".idea/:PyCharm IDE 的项目配置文件。看不到就是隐藏文件"""
.DS_Store
"""macOS 操作系统生成的隐藏文件,用于存储文件夹的自定义属性,如视图选项、背景图像和其他视觉设置。这些文件通常不需要被版本控制系统(如 Git)跟踪,"""# database migrations
*/migrations/*.py
"""这条规则用于忽略所有目录下的 migrations 子目录中的所有 Python 文件(.py)。数据库迁移文件通常用于记录数据库模式的变化,以便在不同环境中同步数据库结构。虽然这些文件可能包含重要的数据库迁移逻辑,但实际的数据库状态(如迁移文件的具体内容)通常不需要被 Git 跟踪,因为它们可以通过 makemigrations 命令重新生成。"""
!*/migrations/__init__.py
"""这条规则是一个例外规则,用于明确指定 migrations 目录中的 __init__.py 文件不应被忽略。__init__.py 文件是 Python 包的初始化文件,用于标识该目录是一个 Python 包。通常情况下,__init__.py 文件是必需的,即使在没有其他内容的情况下也是如此。"""

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/874814.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

BUUCTF刷题-Web方向1~5wp

[极客大挑战 2019]EasySQL 一个sql注入登录框,直接万能密码登录拿到flag[极客大挑战 2019]Havefun 打开环境,没有任何信息,查看源码,发现这么一段代码GET方式传入一个cat请求,并且变量值为dog,即?cat=dog,得到flag[HCTF 2018]WarmUp 打开环境,是一张图片,查看源码发现…

99%的人不知道,桥接模式失败的真正原因是它!

前言 大家好,我是VoltCary 最近做一些基础设施的部署工作,以手上的kali linux作为集群的节点,因为用到的是虚拟机,且本机网络为无线wifi,现在希望虚拟机像正常独立主机存在网络中,因此不能像正常本地主机一样直接加入网段节点,虚拟机还需要进行网络的配置。 让虚拟机成为…

Orleans框架升级指南(3.6.5--8.0.0)

升级指南 官方升级指南 https://learn.microsoft.com/zh-cn/dotnet/orleans/migration-guide?source=recommendations主要涉及以下几个改动点ConfigureApplicationParts3.6.5版在Silo初始化的时候,会通过这个方法将指定目录下的Grain加载进来.ConfigureApplicationParts(part…

AtCoder Beginner Contest 386

A - Full House 2 题意给\(4\)个整数,问能否添加一个整数使得恰有\(3\)个整数\(a\)和\(2\)个整数\(b\)思路模拟代码点击查看代码 #include <bits/stdc++.h> using namespace std; #define int long long typedef pair<int, int> pii;const int mxn = 1e6 + 5;void…

Iceberg治理服务Amoro---配置Prometheus + Grafana看板

一、基础资料 1、mac安装Prometheus + Grafana https://www.cnblogs.com/robots2/p/18689540 2、配置文档 https://amoro.apache.org/docs/0.7.1/deployment/#configure-metric-reporter 3、Grafana配置内容 https://github.com/apache/amoro/blob/master/grafana/dashboard.js…

【Python】查找两个表格是否存在相同元素

其实就是字典的应用,把其中一个表格做成字典(将需要查询的元素设为字典的键),然后读取另一个表格逐个在字典中查找 表1:表2:import openpyxlwb1 = openpyxl.load_workbook(r"C:\Users\Lenovo\Desktop\表1.xlsx") ws1 = wb1["Sheet1"] wb2 = openpyxl…

git分支提交,提PR

远程分支xxx,临时分支tmp_xxx git checkout -b tmp_xxx   #创建并进入临时分支 git pull origin xxx      #更新本地code git add .          git commit -m "test pr" git push --set-upstream origin tmp_xxx #github上现在能看到这个临时…

Hibernate Validator 国际化开启快速校验配置

这里默认你已经配置好了国际化,如需配置可以参考 网上其他配置,这里只做快速失败国际化配置@Configuration public class ValidConfig {@Beanpublic Validator validator() {     // 这里是读取你的国际化配置文件做缓存MessageInterpolator messageInterpolator = new R…

AQS学习笔记

一、使线程进入等待状态和唤醒状态的三种方法 1、使用Object中的wait()方法让线程等待,使用Object中的notify()方法唤醒线程,需配合synchronized关键字使用 2、使用JUC包中的Condition的await()方法让线程等待,使用signal()方法唤醒线程 3、LockSupport类可以阻塞当前线程以…

Oracle安装指南 Xming远程桌面

安装Xming然后使用Oracle用户连接登录,设置DISPLAY环境变量(IP地址为你的windows客户端IP地址) export DISPLAY=192.168.111.155:0.0然后执行dbca就会弹出数据库配置界面了参考链接:https://www.cnblogs.com/iancloud/p/15015683.html

P4070 [SDOI2016] 生成魔咒

P4070 [SDOI2016] 生成魔咒 题目描述 魔咒串由许多魔咒字符组成,魔咒字符可以用数字表示。例如可以将魔咒字符 \(1,2\) 拼凑起来形成一个魔咒串 \([1,2]\)。 一个魔咒串 \(S\) 的非空字串被称为魔咒串 \(S\) 的生成魔咒。 例如 \(S=[1,2,1]\) 时,它的生成魔咒有 \([1],[2],[1…

深入探讨触发器的创建与应用:数据库自动化管理的强大工具

title: 深入探讨触发器的创建与应用:数据库自动化管理的强大工具 date: 2025/1/24 updated: 2025/1/24 author: cmdragon excerpt: 触发器是一种强大的数据库对象,它能够在特定事件发生之前或之后自动执行一组SQL语句。作为一种自动化管理工具,触发器在许多数据库管理场景…