Skip to content
This repository was archived by the owner on Jul 5, 2023. It is now read-only.

Commit ab706e3

Browse files
authored
Initial commit
0 parents  commit ab706e3

File tree

3 files changed

+250
-0
lines changed

3 files changed

+250
-0
lines changed

.gitigonre

+227
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
node_modules
2+
3+
# Created by <https://www.toptal.com/developers/gitignore/api/python>
4+
5+
# Edit at <https://www.toptal.com/developers/gitignore?templates=python>
6+
7+
### Python ###
8+
9+
# Byte-compiled / optimized / DLL files
10+
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
15+
# C extensions
16+
17+
*.so
18+
19+
# Distribution / packaging
20+
21+
.Python
22+
build/
23+
develop-eggs/
24+
dist/
25+
downloads/
26+
eggs/
27+
.eggs/
28+
lib/
29+
lib64/
30+
parts/
31+
sdist/
32+
var/
33+
wheels/
34+
share/python-wheels/
35+
*.egg-info/
36+
.installed.cfg
37+
*.egg
38+
MANIFEST
39+
40+
# PyInstaller
41+
42+
# Usually these files are written by a python script from a template
43+
44+
# before PyInstaller builds the exe, so as to inject date/other infos into it
45+
46+
*.manifest
47+
*.spec
48+
49+
# Installer logs
50+
51+
pip-log.txt
52+
pip-delete-this-directory.txt
53+
54+
# Unit test / coverage reports
55+
56+
htmlcov/
57+
.tox/
58+
.nox/
59+
.coverage
60+
.coverage.*
61+
.cache
62+
nosetests.xml
63+
coverage.xml
64+
*.cover
65+
*.py,cover
66+
.hypothesis/
67+
.pytest_cache/
68+
cover/
69+
70+
# Translations
71+
72+
*.mo
73+
*.pot
74+
75+
# Django stuff
76+
77+
*.log
78+
local_settings.py
79+
db.sqlite3
80+
db.sqlite3-journal
81+
82+
# Flask stuff
83+
84+
instance/
85+
.webassets-cache
86+
87+
# Scrapy stuff
88+
89+
.scrapy
90+
91+
# Sphinx documentation
92+
93+
docs/_build/
94+
95+
# PyBuilder
96+
97+
.pybuilder/
98+
target/
99+
100+
# Jupyter Notebook
101+
102+
.ipynb_checkpoints
103+
104+
# IPython
105+
106+
profile_default/
107+
ipython_config.py
108+
109+
# pyenv
110+
111+
# For a library or package, you might want to ignore these files since the code is
112+
113+
# intended to run in multiple environments; otherwise, check them in
114+
115+
# .python-version
116+
117+
# pipenv
118+
119+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control
120+
121+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
122+
123+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
124+
125+
# install all needed dependencies
126+
127+
# Pipfile.lock
128+
129+
# poetry
130+
131+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control
132+
133+
# This is especially recommended for binary packages to ensure reproducibility, and is more
134+
135+
# commonly ignored for libraries
136+
137+
# <https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control>
138+
139+
# poetry.lock
140+
141+
# pdm
142+
143+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control
144+
145+
# pdm.lock
146+
147+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
148+
149+
# in version control
150+
151+
# <https://pdm.fming.dev/#use-with-ide>
152+
153+
.pdm.toml
154+
155+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
156+
157+
__pypackages__/
158+
159+
# Celery stuff
160+
161+
celerybeat-schedule
162+
celerybeat.pid
163+
164+
# SageMath parsed files
165+
166+
*.sage.py
167+
168+
# Environments
169+
170+
.env
171+
.venv
172+
env/
173+
venv/
174+
ENV/
175+
env.bak/
176+
venv.bak/
177+
178+
# Spyder project settings
179+
180+
.spyderproject
181+
.spyproject
182+
183+
# Rope project settings
184+
185+
.ropeproject
186+
187+
# mkdocs documentation
188+
189+
/site
190+
191+
# mypy
192+
193+
.mypy_cache/
194+
.dmypy.json
195+
dmypy.json
196+
197+
# Pyre type checker
198+
199+
.pyre/
200+
201+
# pytype static type analyzer
202+
203+
.pytype/
204+
205+
# Cython debug symbols
206+
207+
cython_debug/
208+
209+
# PyCharm
210+
211+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
212+
213+
# be found at <https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore>
214+
215+
# and can be added to the global gitignore or merged into this file. For a more nuclear
216+
217+
# option (not recommended) you can uncomment the following to ignore the entire idea folder
218+
219+
# .idea/
220+
221+
### Python Patch ###
222+
223+
# Poetry local configuration file - <https://python-poetry.org/docs/configuration/#local-configuration>
224+
225+
poetry.toml
226+
227+
# End of <https://www.toptal.com/developers/gitignore/api/python>

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Red Hat - Israel
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# RH-Israel-template
2+
This is a [template repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-template-repository) which acts as the skeleton for generating a new repoistory under RH-Israel organization.

0 commit comments

Comments
 (0)