Skip to content

Commit

Permalink
feat: Added configuration dotfiles for Git
Browse files Browse the repository at this point in the history
Closes #9
  • Loading branch information
mdsanima committed Jan 6, 2024
1 parent 75e7d5c commit 404307b
Show file tree
Hide file tree
Showing 3 changed files with 283 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[user]
name = mdsanima
email = marcinrozewski@gmail.com
signingkey = marcinrozewski@gmail.com
[commit]
gpgsign = true
[init]
defaultbranch = main
[core]
editor = vim
271 changes: 271 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,271 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files

# Python Template
# 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/
pip-wheel-metadata/
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

# 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
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# 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

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.venv
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

# Pyre type checker
.pyre/

# Kivy Python
*/.buildozer*
*/.KivyMD*
*/.testing/cache*
*/cache*
*/build/
*/.build*
*/__pyca*

# Node Template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/
.pnp
.pnp.js

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo
# next-env.d.ts

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env.local
.env.test.local
.env.development.local
.env.production.local
.env*.local

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next
/out/

# Nuxt.js build / generate output
.nuxt
dist

# vercel
.vercel

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# misc
.DS_Store
*.pem

# MDSANIMA Template
# setuptools_scm
_version.py

# temp folder
tmp
temp
2 changes: 2 additions & 0 deletions .gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<!-- This file is only for keeping the folder and will also be committed, -->
<!-- later you can delete it as something is found in this folder. -->

0 comments on commit 404307b

Please sign in to comment.