Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2024_tt_fastapi_custom_exceptions'
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjan Egges committed Mar 22, 2024
2 parents 4577c19 + dd23f0c commit 2696cb5
Show file tree
Hide file tree
Showing 42 changed files with 3,633 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SECRET_KEY=secret
DEBUG=True
DATABASE_HOSTNAME=postgres
92 changes: 92 additions & 0 deletions 2024/tuesday_tips/fastapi_custom_exceptions/skypulse/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# Cookiecutter specific
data/*

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# 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/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# DotEnv configuration
.env

# Database
*.db
*.rdb

# Pycharm
.idea

# VS Code
.vscode/

# Spyder
.spyproject/

# Jupyter NB Checkpoints
.ipynb_checkpoints/

# exclude data from source control by default
/data/

# Mac OS-specific storage files
.DS_Store

# vim
*.swp
*.swo

# Mypy cache
.mypy_cache/
Loading

0 comments on commit 2696cb5

Please sign in to comment.