Last active
January 21, 2023 08:22
-
-
Save ozgurkalan/16421be5b4601923f1f53bb93c1c287d to your computer and use it in GitHub Desktop.
.gitignore sandbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ignore dynaconf secret files | |
*secrets* | |
# archive folder | |
__archive__/ | |
__archive/ | |
# tmp folders | |
tmp/ | |
# fixture folders | |
fixtures/ | |
# Jupyter Notebook | |
.ipynb_checkpoints | |
*/.ipynb_checkpoints/* | |
**/*.ipynb | |
# no excel file | |
*.xlsx | |
*.xlsm | |
*.bin | |
# certificate files | |
*.pem | |
# token files | |
*.token | |
################# | |
# Editors | |
.vscode/ | |
# *.code-workspace | |
*.sublime* | |
*.idea* | |
*.suo | |
*.ntvs* | |
*.njsproj | |
*.sln | |
# sqlite | |
*.db | |
*.sqlite3 | |
# Vagrant | |
.vagrant/ | |
# Mac/OSX | |
.DS_Store | |
.thumbs.db | |
# Windows | |
Thumbs.db | |
# Source for the following rules: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore | |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# C extensions | |
*.so | |
# Distribution / packaging | |
.Python | |
build/ | |
develop-eggs/ | |
dist/ | |
downloads/ | |
eggs/ | |
.eggs/ | |
lib/ | |
lib64/ | |
parts/ | |
sdist/ | |
var/ | |
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 | |
# Installer logs | |
pip-log.txt | |
pip-delete-this-directory.txt | |
# Unit test / coverage reports | |
htmlcov/ | |
.tox/ | |
.nox/ | |
.coverage | |
.coverage.* | |
.cache | |
nosetests.xml | |
coverage.xml | |
*.cover | |
.hypothesis/ | |
.pytest_cache/ | |
# Translations | |
*.mo | |
*.pot | |
# Django stuff: | |
*.log | |
local_settings.py | |
# Flask stuff: | |
instance/ | |
.webassets-cache | |
# Scrapy stuff: | |
.scrapy | |
# Sphinx documentation | |
docs/_build/ | |
# PyBuilder | |
target/ | |
# IPython | |
profile_default/ | |
ipython_config.py | |
# pyenv | |
.python-version | |
# celery beat schedule file | |
celerybeat-schedule | |
# SageMath parsed files | |
*.sage.py | |
# Environments | |
.env | |
.venv | |
.env/ | |
env/ | |
venv/ | |
ENV/ | |
env.bak/ | |
venv.bak/ | |
# Spyder project settings | |
.spyderproject | |
.spyproject | |
# Rope project settings | |
.ropeproject | |
# mkdocs documentation | |
/site | |
# mypy | |
.mypy_cache/ | |
.dmypy.json | |
dmypy.json | |
# Nodejs ignores | |
################# | |
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
lerna-debug.log* | |
# Runtime data | |
pids | |
*.pid | |
*.seed | |
*.pid.lock | |
# composer vendor... | |
/vendor/ | |
# webpack HMR chunks... | |
/dist/tmp | |
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | |
.grunt | |
# Bower dependency directory (https://bower.io/) | |
### Bower ### | |
bower_components | |
.bower-cache | |
.bower-registry | |
.bower-tmp | |
# node-waf configuration | |
.lock-wscript | |
# Compiled binary addons (https://nodejs.org/api/addons.html) | |
build/Release | |
# Dependency directories | |
node_modules/ | |
jspm_packages/ | |
# editorconfig file | |
.editorconfig | |
# ignore lock files from composer + npm | |
package-lock.json | |
composer.lock | |
# Optional npm cache directory | |
.npm | |
# Optional eslint cache | |
.eslintcache | |
# Output of 'npm pack' | |
*.tgz | |
# Yarn Integrity file | |
.yarn-integrity | |
# Nuxt.js build / generate output | |
.nuxt | |
dist | |
# vuepress build output | |
.vuepress/dist | |
# Serverless directories | |
.serverless/ | |
# Stores VSCode versions used for testing VSCode extensions | |
.vscode-test | |
# remote container file | |
.devcontainer/ | |
# yarn v2 | |
.yarn/cache | |
.yarn/unplugged | |
.yarn/build-state.yml | |
.pnp.* | |
# Quasar core related directories | |
.quasar | |
/dist | |
# Cordova related directories and files | |
/src-cordova/node_modules | |
/src-cordova/platforms | |
/src-cordova/plugins | |
/src-cordova/www | |
# Capacitor related directories and files | |
/src-capacitor/www | |
/src-capacitor/node_modules | |
# BEX related directories and files | |
/src-bex/www | |
/src-bex/js/core | |
########################################################### | |
##### ! include ########################################### | |
########################################################### | |
!tests/test_folder/*.* | |
# re-remove unwanted | |
.DS_Store | |
tmp/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment