Skip to content

Commit a167bd3

Browse files
committed
docs: MAJOR update of README files with instructions and step-by-step guide
1 parent cb57300 commit a167bd3

File tree

5 files changed

+455
-6
lines changed

5 files changed

+455
-6
lines changed

.gitignore

Lines changed: 309 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,309 @@
1+
################################################################################
2+
# OWN IGNORES
3+
################################################################################
4+
tmp.*
5+
temp.*
6+
test.sh
7+
test.py
8+
test.js
9+
*.zip
10+
11+
12+
################################################################################
13+
# OFFICIAL PYTHON GITIGNORE
14+
################################################################################
15+
# Byte-compiled / optimized / DLL files
16+
__pycache__/
17+
*.py[cod]
18+
*$py.class
19+
20+
# C extensions
21+
*.so
22+
23+
# Distribution / packaging
24+
.Python
25+
build/
26+
develop-eggs/
27+
dist/
28+
downloads/
29+
eggs/
30+
.eggs/
31+
lib/
32+
lib64/
33+
parts/
34+
sdist/
35+
var/
36+
wheels/
37+
share/python-wheels/
38+
*.egg-info/
39+
.installed.cfg
40+
*.egg
41+
MANIFEST
42+
43+
# PyInstaller
44+
# Usually these files are written by a python script from a template
45+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
46+
*.manifest
47+
*.spec
48+
49+
# Installer logs
50+
pip-log.txt
51+
pip-delete-this-directory.txt
52+
53+
# Unit test / coverage reports
54+
htmlcov/
55+
.tox/
56+
.nox/
57+
.coverage
58+
.coverage.*
59+
.cache
60+
nosetests.xml
61+
coverage.xml
62+
*.cover
63+
*.py,cover
64+
.hypothesis/
65+
.pytest_cache/
66+
cover/
67+
68+
# Translations
69+
*.mo
70+
*.pot
71+
72+
# Django stuff:
73+
*.log
74+
local_settings.py
75+
db.sqlite3
76+
db.sqlite3-journal
77+
78+
# Flask stuff:
79+
instance/
80+
.webassets-cache
81+
82+
# Scrapy stuff:
83+
.scrapy
84+
85+
# Sphinx documentation
86+
docs/_build/
87+
88+
# PyBuilder
89+
.pybuilder/
90+
target/
91+
92+
# Jupyter Notebook
93+
.ipynb_checkpoints
94+
95+
# IPython
96+
profile_default/
97+
ipython_config.py
98+
99+
# pyenv
100+
# For a library or package, you might want to ignore these files since the code is
101+
# intended to run in multiple environments; otherwise, check them in:
102+
# .python-version
103+
104+
# pipenv
105+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
106+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
107+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
108+
# install all needed dependencies.
109+
#Pipfile.lock
110+
111+
# poetry
112+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
113+
# This is especially recommended for binary packages to ensure reproducibility, and is more
114+
# commonly ignored for libraries.
115+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
116+
#poetry.lock
117+
118+
# pdm
119+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
120+
#pdm.lock
121+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
122+
# in version control.
123+
# https://pdm.fming.dev/#use-with-ide
124+
.pdm.toml
125+
126+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
127+
__pypackages__/
128+
129+
# Celery stuff
130+
celerybeat-schedule
131+
celerybeat.pid
132+
133+
# SageMath parsed files
134+
*.sage.py
135+
136+
# Environments
137+
.env
138+
.venv
139+
env/
140+
venv/
141+
ENV/
142+
env.bak/
143+
venv.bak/
144+
145+
# Spyder project settings
146+
.spyderproject
147+
.spyproject
148+
149+
# Rope project settings
150+
.ropeproject
151+
152+
# mkdocs documentation
153+
/site
154+
155+
# mypy
156+
.mypy_cache/
157+
.dmypy.json
158+
dmypy.json
159+
160+
# Pyre type checker
161+
.pyre/
162+
163+
# pytype static type analyzer
164+
.pytype/
165+
166+
# Cython debug symbols
167+
cython_debug/
168+
169+
# PyCharm
170+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
171+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
172+
# and can be added to the global gitignore or merged into this file. For a more nuclear
173+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
174+
#.idea/
175+
176+
177+
################################################################################
178+
# OFFICIAL NODEJS GITIGNORE
179+
################################################################################
180+
# Logs
181+
logs
182+
*.log
183+
npm-debug.log*
184+
yarn-debug.log*
185+
yarn-error.log*
186+
lerna-debug.log*
187+
.pnpm-debug.log*
188+
189+
# Diagnostic reports (https://nodejs.org/api/report.html)
190+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
191+
192+
# Runtime data
193+
pids
194+
*.pid
195+
*.seed
196+
*.pid.lock
197+
198+
# Directory for instrumented libs generated by jscoverage/JSCover
199+
lib-cov
200+
201+
# Coverage directory used by tools like istanbul
202+
coverage
203+
*.lcov
204+
205+
# nyc test coverage
206+
.nyc_output
207+
208+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
209+
.grunt
210+
211+
# Bower dependency directory (https://bower.io/)
212+
bower_components
213+
214+
# node-waf configuration
215+
.lock-wscript
216+
217+
# Compiled binary addons (https://nodejs.org/api/addons.html)
218+
build/Release
219+
220+
# Dependency directories
221+
node_modules/
222+
jspm_packages/
223+
224+
# Snowpack dependency directory (https://snowpack.dev/)
225+
web_modules/
226+
227+
# TypeScript cache
228+
*.tsbuildinfo
229+
230+
# Optional npm cache directory
231+
.npm
232+
233+
# Optional eslint cache
234+
.eslintcache
235+
236+
# Optional stylelint cache
237+
.stylelintcache
238+
239+
# Microbundle cache
240+
.rpt2_cache/
241+
.rts2_cache_cjs/
242+
.rts2_cache_es/
243+
.rts2_cache_umd/
244+
245+
# Optional REPL history
246+
.node_repl_history
247+
248+
# Output of 'npm pack'
249+
*.tgz
250+
251+
# Yarn Integrity file
252+
.yarn-integrity
253+
254+
# dotenv environment variable files
255+
.env
256+
.env.development.local
257+
.env.test.local
258+
.env.production.local
259+
.env.local
260+
261+
# parcel-bundler cache (https://parceljs.org/)
262+
.cache
263+
.parcel-cache
264+
265+
# Next.js build output
266+
.next
267+
out
268+
269+
# Nuxt.js build / generate output
270+
.nuxt
271+
dist
272+
273+
# Gatsby files
274+
.cache/
275+
# Comment in the public line in if your project uses Gatsby and not Next.js
276+
# https://nextjs.org/blog/next-9-1#public-directory-support
277+
# public
278+
279+
# vuepress build output
280+
.vuepress/dist
281+
282+
# vuepress v2.x temp and cache directory
283+
.temp
284+
.cache
285+
286+
# Docusaurus cache and generated files
287+
.docusaurus
288+
289+
# Serverless directories
290+
.serverless/
291+
292+
# FuseBox cache
293+
.fusebox/
294+
295+
# DynamoDB Local files
296+
.dynamodb/
297+
298+
# TernJS port file
299+
.tern-port
300+
301+
# Stores VSCode versions used for testing VSCode extensions
302+
.vscode-test
303+
304+
# yarn v2
305+
.yarn/cache
306+
.yarn/unplugged
307+
.yarn/build-state.yml
308+
.yarn/install-state.gz
309+
.pnp.*

NODEJS_README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# STEP-BY-STEP GUIDE FOR NODEJS-BASED DOCKER IMAGES FOR LAMBDA FUNCTIONS
2+
3+
TO-DO

0 commit comments

Comments
 (0)