Skip to content

Commit 7c00f7f

Browse files
rubenfonsecadependabot[bot]
authored andcommitted
feat(event_handlers): Add support for Lambda Function URLs (aws-powertools#1408)
1 parent 5dfc459 commit 7c00f7f

File tree

1 file changed

+6
-308
lines changed

1 file changed

+6
-308
lines changed

.gitignore

Lines changed: 6 additions & 308 deletions
Original file line numberDiff line numberDiff line change
@@ -1,309 +1,7 @@
1-
# Created by https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
2-
# Edit at https://www.gitignore.io/?templates=osx,linux,python,windows,pycharm,visualstudiocode
3-
4-
### Linux ###
5-
*~
6-
7-
# temporary files which can be created if a process still has a handle open of a deleted file
8-
.fuse_hidden*
9-
10-
# KDE directory preferences
11-
.directory
12-
13-
# Linux trash folder which might appear on any partition or disk
14-
.Trash-*
15-
16-
# .nfs files are created when an open file is removed but is still being accessed
17-
.nfs*
18-
19-
### OSX ###
20-
# General
21-
.DS_Store
22-
.AppleDouble
23-
.LSOverride
24-
25-
# Icon must end with two \r
26-
Icon
27-
28-
# Thumbnails
29-
._*
30-
31-
# Files that might appear in the root of a volume
32-
.DocumentRevisions-V100
33-
.fseventsd
34-
.Spotlight-V100
35-
.TemporaryItems
36-
.Trashes
37-
.VolumeIcon.icns
38-
.com.apple.timemachine.donotpresent
39-
40-
# Directories potentially created on remote AFP share
41-
.AppleDB
42-
.AppleDesktop
43-
Network Trash Folder
44-
Temporary Items
45-
.apdisk
46-
47-
### PyCharm ###
48-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
49-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
50-
51-
# User-specific stuff
52-
.idea/**/workspace.xml
53-
.idea/**/tasks.xml
54-
.idea/**/usage.statistics.xml
55-
.idea/**/dictionaries
56-
.idea/**/shelf
57-
58-
# Generated files
59-
.idea/**/contentModel.xml
60-
61-
# Sensitive or high-churn files
62-
.idea/**/dataSources/
63-
.idea/**/dataSources.ids
64-
.idea/**/dataSources.local.xml
65-
.idea/**/sqlDataSources.xml
66-
.idea/**/dynamic.xml
67-
.idea/**/uiDesigner.xml
68-
.idea/**/dbnavigator.xml
69-
70-
# Gradle
71-
.idea/**/gradle.xml
72-
.idea/**/libraries
73-
74-
# Gradle and Maven with auto-import
75-
# When using Gradle or Maven with auto-import, you should exclude module files,
76-
# since they will be recreated, and may cause churn. Uncomment if using
77-
# auto-import.
78-
# .idea/modules.xml
79-
# .idea/*.iml
80-
# .idea/modules
81-
# *.iml
82-
# *.ipr
83-
84-
# CMake
85-
cmake-build-*/
86-
87-
# Mongo Explorer plugin
88-
.idea/**/mongoSettings.xml
89-
90-
# File-based project format
91-
*.iws
92-
93-
# IntelliJ
94-
out/
95-
96-
# mpeltonen/sbt-idea plugin
97-
.idea_modules/
98-
99-
# JIRA plugin
100-
atlassian-ide-plugin.xml
101-
102-
# Cursive Clojure plugin
103-
.idea/replstate.xml
104-
105-
# Crashlytics plugin (for Android Studio and IntelliJ)
106-
com_crashlytics_export_strings.xml
107-
crashlytics.properties
108-
crashlytics-build.properties
109-
fabric.properties
110-
111-
# Editor-based Rest Client
112-
.idea/httpRequests
113-
114-
# Android studio 3.1+ serialized cache file
115-
.idea/caches/build_file_checksums.ser
116-
117-
### PyCharm Patch ###
118-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
119-
120-
# *.iml
121-
# modules.xml
122-
# .idea/misc.xml
123-
# *.ipr
124-
125-
# Sonarlint plugin
126-
.idea/sonarlint
127-
128-
### Python ###
129-
# Byte-compiled / optimized / DLL files
130-
__pycache__/
131-
*.py[cod]
132-
*$py.class
133-
134-
# C extensions
135-
*.so
136-
137-
# Distribution / packaging
138-
.Python
139-
build/
140-
develop-eggs/
141-
dist/
142-
downloads/
143-
eggs/
144-
.eggs/
145-
lib/
146-
lib64/
147-
parts/
148-
sdist/
149-
var/
150-
wheels/
151-
pip-wheel-metadata/
152-
share/python-wheels/
153-
*.egg-info/
154-
.installed.cfg
155-
*.egg
156-
MANIFEST
157-
158-
# PyInstaller
159-
# Usually these files are written by a python script from a template
160-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
161-
*.manifest
162-
*.spec
163-
164-
# Installer logs
165-
pip-log.txt
166-
pip-delete-this-directory.txt
167-
168-
# Unit test / coverage reports
169-
htmlcov/
170-
.tox/
171-
.nox/
172-
.coverage
173-
.coverage.*
174-
.cache
175-
nosetests.xml
176-
coverage.xml
177-
*.cover
178-
.hypothesis/
179-
.pytest_cache/
180-
181-
# Translations
182-
*.mo
183-
*.pot
184-
185-
# Django stuff:
186-
*.log
187-
local_settings.py
188-
db.sqlite3
189-
db.sqlite3-journal
190-
191-
# Flask stuff:
192-
instance/
193-
.webassets-cache
194-
195-
# Scrapy stuff:
196-
.scrapy
197-
198-
# Sphinx documentation
199-
docs/_build/
200-
201-
# PyBuilder
202-
target/
203-
204-
# Jupyter Notebook
205-
.ipynb_checkpoints
206-
207-
# IPython
208-
profile_default/
209-
ipython_config.py
210-
211-
# pyenv
212-
.python-version
213-
214-
# pipenv
215-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
216-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
217-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
218-
# install all needed dependencies.
219-
#Pipfile.lock
220-
221-
# celery beat schedule file
222-
celerybeat-schedule
223-
224-
# SageMath parsed files
225-
*.sage.py
226-
227-
# Environments
228-
.env
229-
.venv
230-
env/
231-
venv/
232-
ENV/
233-
env.bak/
234-
venv.bak/
235-
236-
# Spyder project settings
237-
.spyderproject
238-
.spyproject
239-
240-
# Rope project settings
241-
.ropeproject
242-
243-
# mkdocs documentation
244-
/site
245-
246-
# mypy
247-
.mypy_cache/
248-
.dmypy.json
249-
dmypy.json
250-
251-
# Pyre type checker
252-
.pyre/
253-
254-
### VisualStudioCode ###
255-
.vscode/*
256-
!.vscode/tasks.json
257-
!.vscode/launch.json
258-
!.vscode/extensions.json
259-
260-
### VisualStudioCode Patch ###
261-
# Ignore all local history of files
262-
.history
263-
264-
### Windows ###
265-
# Windows thumbnail cache files
266-
Thumbs.db
267-
Thumbs.db:encryptable
268-
ehthumbs.db
269-
ehthumbs_vista.db
270-
271-
# Dump file
272-
*.stackdump
273-
274-
# Folder config file
275-
[Dd]esktop.ini
276-
277-
# Recycle Bin used on file shares
278-
$RECYCLE.BIN/
279-
280-
# Windows Installer files
281-
*.cab
282-
*.msi
283-
*.msix
284-
*.msm
285-
*.msp
286-
287-
# Windows shortcuts
288-
*.lnk
289-
290-
# End of https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
291-
292-
# Misc
293-
test_report
294-
wheelhouse
1+
/nbproject/
2952
/.idea/*
296-
*.html
297-
TMP_CHANGELOG.md
298-
299-
# Docs files
300-
docs/.cache/
301-
docs/public
302-
node_modules
303-
api/
304-
site/
305-
!404.html
306-
!docs/overrides/*.html
307-
308-
!.github/workflows/lib
309-
examples/**/sam/.aws-sam
3+
*.tmlanguage.cache
4+
*.tmPreferences.cache
5+
*.stTheme.cache
6+
*.sublime-workspace
7+
*.sublime-project

0 commit comments

Comments
 (0)