-
Notifications
You must be signed in to change notification settings - Fork 16
/
.gitignore
67 lines (52 loc) · 1.28 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Modified based on https://www.gitignore.io/api/visualstudiocode,python
# compiled output
**/global-s3-assets
**/regional-s3-assets
**/build-s3-assets
**/open-source
**/tmp
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Python Distribution / packaging
*.egg-info/
*.egg
# Python Virtual Environments
**/venv*
**/.venv*
.python-version
pyvenv.cfg
## Python Testing
**/.pytest_cache
**/.coverage
**/coverage-reports/
.coverage.*
# linting, scanning configurations, sonarqube
.scannerwork/
### VisualStudioCode ###
.vscode/*
### IntelliJ/ PyCharm ###
**/.idea/*
# System Files
**/.DS_Store
# CDK
**/cdk.out
# Glue
.glue/*
# Generated test assets
source/infrastructure/tests/assets/*
!source/infrastructure/tests/assets/.keep
source/scheduler/cdk/aws_solutions/scheduler/cdk/aws_lambda/get_next_scheduled_event/build
source/scheduler/cdk/aws_solutions/scheduler/cdk/aws_lambda/get_next_scheduled_event/.gradle
source/scheduler/cdk/aws_solutions/scheduler/cdk/aws_lambda/get_next_scheduled_event/.idea
# gradle build files
**/.gradle/*
# java build files
**/java/**/build
# python build files
source/cdk_solution_helper_py/helpers_cdk/build/*
source/cdk_solution_helper_py/helpers_common/build/*
source/scheduler/common/build/*
source/scheduler/cdk/build/*